Genomic Data Infrastructure: Building and Managing Large-Scale Genomic Databases
Genomic data infrastructure combines storage systems, compute resources, data formats, and management practices to handle the massive datasets produced by modern sequencing technologies. For students, researchers, analysts, and life-science professionals, understanding this infrastructure is essential because the volume of data generated by next-generation sequencing far exceeds what traditional laboratory information systems can manage. This article explains the core components of genomic data infrastructure, compares on-premises and cloud-based approaches, and provides a practical checklist for designing a scalable system.
The Scale Problem in Genomic Data Management
Next-generation sequencing produces large amounts of data, and the complexity of managing that data has driven many laboratories to adopt cloud services, particularly when internal information technology infrastructure cannot support the data requirements [5]. A single human whole-genome sequencing run can generate hundreds of gigabytes of raw data in FASTQ format, and a large cohort study involving thousands of samples quickly reaches terabyte or petabyte scale. The UK Biobank whole-genome sequencing dataset, for example, required 23 chromosome-specific files that occupied only 1.10 tebibytes of storage when converted to an annotated genomic data structure format, a substantial reduction from the original VCF files [20].
The challenge extends beyond storage capacity. Genomic data must be processed through multiple analysis stages, each producing intermediate files that may be larger than the original raw data. Read alignment produces BAM files, variant calling produces VCF files, and downstream analysis may generate additional annotation and summary files. Each of these stages requires computational resources that must be available when needed, beyond when a local server happens to have spare capacity.
Modern genomics produces billions of sequencing records per run, and these records are typically stored as gzip-compressed FASTQ files [13]. While this format is widely used, it is not optimal for high-throughput processing because it relies on single-threaded decompression and sequential parsing of irregularly sized records [13]. This limitation becomes particularly problematic for applications that would benefit from parallel processing, such as read mapping, variant calling, and de novo assembly [13].
Core Components of Genomic Data Infrastructure
Data Storage Formats
The choice of file format has a direct impact on storage costs, processing speed, and the ability to parallelize analysis workflows. The three primary formats in genomic data management are FASTQ, BAM, and VCF, each serving a distinct purpose in the analysis pipeline.
FASTQ files store raw sequencing reads along with quality scores. They are the standard output of sequencing instruments and the starting point for most analysis pipelines. The format is simple and widely supported, but it has significant limitations for large-scale processing. The reliance on gzip compression means that decompression is single-threaded, creating a bottleneck when multiple processors are available [13]. The irregularly sized records also make it difficult to randomly access specific portions of a file without reading the entire file sequentially [13].
BAM files store aligned reads and are the binary compressed version of the SAM format. They support random access through an associated index file, which makes them suitable for viewing alignments at specific genomic locations. BAM files are larger than compressed FASTQ files but smaller than uncompressed alignment output.
VCF files store genetic variants and genotypes. They are the standard format for representing the results of variant calling and are used for downstream analysis such as association studies and population genetics. VCF files can become very large for whole-genome datasets, particularly when many samples are included in a single file.
Alternative formats have been developed to address the limitations of these standard formats. The annotated genomic data structure (aGDS) format substantially reduces whole-genome sequencing data file size while enabling seamless integration of genomic and functional information [20]. The vcf2agds toolkit streamlines the conversion of whole-genome sequencing data from VCF to aGDS format, and the STAARpipeline equipped with aGDS files enables scalable analysis of common and rare coding and noncoding phenotype-genotype associations [20].
The BINSEQ family of binary formats offers another alternative, with two complementary implementations [13]. The BQ format is optimized for fixed-length reads using a two-bit or four-bit encoding scheme with true random record access capability, while the VBQ format is designed for variable-length sequences with optional quality scores and block-based compression [13]. BINSEQ files can be up to 90 times faster than compressed FASTQ for parallel processing and can reduce analysis time from hours to minutes for large-scale genome and transcriptome analyses [13].
Database Solutions
Genomic data management requires more than file storage. Metadata about samples, experiments, and analysis results must be stored in queryable databases that support cohort selection and data integration. The choice of database depends on the type of data being managed and the queries that will be performed.
Relational databases such as PostgreSQL are well suited for structured metadata, including sample information, experimental conditions, and quality metrics. An integrative data management and information system for agronomic field trials used a dynamic PostgreSQL database with GIS extension, capable of importing, storing, and managing all types of data including images [24]. The database referenced every structural database object and measurement with semantic, spatial, and temporal references, allowing automated linking of all data through timestamps and geo-coordinates [24].
NoSQL databases and object storage systems are often used for the large binary files themselves. Cloud object storage services provide scalable, durable storage for FASTQ, BAM, and VCF files, with the ability to access data from multiple compute instances simultaneously.
Specialized genomic data platforms combine database functionality with analysis capabilities. OpenGenomeBrowser is a self-hostable, open-source platform that manages access to genomic data and simplifies comparative genomics analyses [22]. It enables users to interactively generate phylogenetic trees, compare gene loci, browse biochemical pathways, perform gene trait matching, create dot plots, execute BLAST searches, and access the data [22]. The platform features a flexible user management system and a modular folder structure that enables the organization of genomic data and metadata [22].
Compute Resources
The computational requirements of genomic analysis vary widely depending on the analysis type. Read alignment and variant calling are compute-intensive tasks that benefit from many CPU cores and substantial memory. De novo assembly and structural variant detection may require even more resources. Phylogenetic analysis and population genetics calculations can be memory-bound.
Cloud computing provides on-demand network access to computing resources, allowing users to rent instead of buy all required computing resources [6]. This model is particularly attractive for genomic analysis because workloads are often bursty, with periods of intense computation followed by periods of relative inactivity. A study developing an automated and scalable analysis pipeline using Microsoft Azure cloud infrastructure described the selection process for suitable virtual machine sizes to balance performance against cost effectiveness [6]. The pipeline used Docker containers to include all tools in the cloud computational environment and demonstrated that the automated cloud-based pipeline met key imperatives for performance, cost, usability, simplicity, and accuracy [6].
At a Glance: Infrastructure Options Comparison
| Infrastructure Component | On-Premises | Public Cloud | Hybrid or Federated |
|---|---|---|---|
| Initial capital cost | High, requires hardware purchase and facility preparation | Low, pay-as-you-go model with no upfront hardware investment | Moderate, requires some local hardware plus cloud contracts |
| Scalability | Limited by physical hardware, requires advance planning for expansion | Elastic, resources can be added or removed based on demand | Partially elastic, local resources provide baseline capacity with cloud overflow |
| Data transfer | Local network speeds, no egress charges | Upload and download costs apply, transfer time depends on connection speed | Local processing reduces transfer needs, only selected data moves to cloud |
| Security control | Full control over physical access and network security | Relies on provider security measures, requires careful configuration | Local sensitive data stays on-premises, less sensitive data can use cloud |
| Maintenance burden | IT staff required for hardware, software, and security updates | Provider handles infrastructure maintenance | Split responsibility between local IT and cloud provider |
| Regulatory compliance | Easier to demonstrate data localization | Requires careful vendor assessment and contractual agreements | Can keep sensitive data local while using cloud for analysis |
On-Premises Versus Cloud-Based Approaches
On-Premises Infrastructure
On-premises infrastructure gives an organization full control over its data and computing resources. This approach is attractive for laboratories that handle sensitive data subject to strict regulatory requirements, because data never leaves the organization's physical control. On-premises systems also avoid recurring cloud costs, which can become substantial for large datasets that are accessed frequently.
The limitations of on-premises infrastructure become apparent when data volumes grow. Storage capacity must be purchased in advance, and expanding capacity requires hardware procurement and installation. Compute resources are similarly fixed, meaning that a large analysis job may wait in a queue while smaller jobs proceed. The cost of maintaining specialized IT staff and keeping hardware current adds to the total cost of ownership.
Many laboratories turn to cloud services when internal information technology infrastructure is inadequate to support data requirements [5]. The decision to move to the cloud is often driven by specific pain points, such as storage exhaustion, slow analysis turnaround, or the need to collaborate with external partners who require access to shared data.
Cloud-Based Infrastructure
Cloud computing offers on-demand network access to a shared pool of configurable computing resources [6]. For genomic data management, the primary advantages are elasticity, cost structure, and access to specialized services.
Elasticity means that compute and storage resources can be scaled up or down based on current needs. A laboratory that occasionally processes large batches of samples can spin up many virtual machines for the duration of the analysis and then release them, paying only for the time used. This model is particularly well suited to the variable workloads typical of genomic analysis.
The pay-as-you-go cost structure of cloud computing shifts spending from capital expenditure to operational expenditure. This can be advantageous for organizations that lack the budget for large hardware purchases but have ongoing operational funds. However, cloud costs must be carefully monitored, as data storage and egress charges can accumulate quickly for large genomic datasets.
Cloud providers offer a range of services that simplify genomic data management. Object storage services provide durable, scalable storage for raw and processed data. Managed database services handle the operational burden of running database software. Container orchestration services simplify the deployment of analysis pipelines. A study of the MS-PyCloud pipeline for proteomic and glycoproteomic data analysis leveraged public cloud computing infrastructure via Amazon Web Services and scaled seamlessly based on analysis demand to achieve fast and efficient performance [8].
Hybrid and Federated Approaches
Hybrid and federated cloud approaches combine local and cloud resources to balance control, cost, and scalability. A hybrid approach might keep raw sequencing data on-premises while using cloud resources for compute-intensive analysis. A federated approach might distribute data across multiple sites, with each site maintaining control over its own data while participating in collaborative analysis.
The responsible use of federated and hybrid clouds set up between public and private partners has been described as an adequate solution for genetics and genomics research in Europe [9]. This approach represents a sensible middle ground between fragmented individual efforts and fully centralized cloud computing [9]. Federated approaches are particularly relevant for international collaborations, where data protection regulations vary across jurisdictions and data cannot always be transferred across borders.
A novel hybrid edge-cloud framework for omics data management combines the localized processing capabilities of edge computing with the scalable resources of cloud computing [25]. The framework demonstrated improvements in network efficiency by reducing data transfer latency through localized edge processing, and operational costs were minimized using advanced compression techniques [25]. The Zstandard codec significantly reduced data size and improved upload times, and edge-based anonymization techniques processed sensitive information locally before transfer to the cloud [25].
Practical Workflow for Building Genomic Data Infrastructure
Step 1: Assess Data Volumes and Growth Projections
Before selecting infrastructure components, estimate the volume of data that will be generated and stored. Consider the number of samples processed per month, the sequencing depth and coverage, and the types of analysis that will be performed. Raw FASTQ files are typically the largest component, but aligned BAM files and VCF files also require substantial storage. Include projections for growth over at least three years, as sequencing volumes tend to increase as costs decrease.
Step 2: Define Data Lifecycle and Retention Policies
Genomic data has a long lifecycle that extends beyond the initial analysis. Raw data may need to be retained for regulatory compliance or reanalysis as new methods become available. Processed data may be archived after a defined period. Define retention policies for each data type and implement automated processes for archiving and deletion.
Step 3: Select File Formats and Compression Strategies
Choose file formats that balance compatibility with analysis tools against storage efficiency and processing speed. Standard formats such as FASTQ, BAM, and VCF are widely supported but may not be optimal for all use cases. Consider alternative formats such as aGDS or BINSEQ for large-scale datasets where processing speed and storage efficiency are priorities [13][20]. Implement compression strategies that reduce storage requirements without compromising data integrity.
Step 4: Choose Deployment Model
Decide between on-premises, cloud, or hybrid deployment based on data sensitivity, regulatory requirements, budget, and technical expertise. Consider the total cost of ownership over the expected lifetime of the infrastructure, including hardware, software, personnel, and cloud service costs. For organizations with limited IT resources, cloud deployment may be more practical than building and maintaining local infrastructure.
Step 5: Implement Data Management and Analysis Pipelines
Develop standardized pipelines for data processing, from raw sequencing data through variant calling and downstream analysis. Use containerization to package analysis tools and their dependencies, ensuring reproducibility across different computing environments [6]. Implement version control for both pipeline code and reference data. Document all pipeline parameters and reference genome versions.
Step 6: Establish Quality Control and Validation Procedures
Implement quality control checks at each stage of the analysis pipeline. Monitor sequencing quality metrics, alignment statistics, and variant calling performance. Validate pipeline outputs against known reference samples to ensure accuracy. A study comparing HLA genotype concordance between an in-house manual method and an automated cloud-based pipeline demonstrated the importance of assessing data accuracy when transitioning to new infrastructure [6].
Step 7: Implement Security and Access Controls
Protect genomic data through encryption, access controls, and audit logging. Genomic data contains the most private information about an individual, and its security must be ensured by protecting it from unauthorized use while enabling research for the sake of public health [15]. Implement role-based access control to ensure that only authorized personnel can access sensitive data. Encrypt data both at rest and in transit.
Step 8: Document and Train
Create documentation for all infrastructure components, including system architecture, data flow diagrams, and operational procedures. Train staff on data management practices, security procedures, and troubleshooting. Ensure that multiple team members understand the infrastructure so that the organization is not dependent on a single individual.
Records and Measurements for Infrastructure Management
Storage Utilization Tracking
Monitor storage utilization by data type, project, and storage tier. Track the growth rate of raw data, processed data, and archived data separately. Set alerts when storage utilization approaches capacity thresholds. Review storage utilization reports monthly to identify opportunities for data cleanup or archival.
Compute Resource Utilization
Track CPU, memory, and disk utilization for analysis jobs. Record job durations, queue times, and failure rates. Use this data to identify bottlenecks and optimize resource allocation. For cloud deployments, monitor costs by service, project, and user to identify spending trends and optimization opportunities.
Data Quality Metrics
Record quality metrics for each sequencing run and analysis batch. Track metrics such as read depth, coverage uniformity, mapping rate, and variant call quality. Compare metrics across batches to identify systematic issues. Document any anomalies and their resolution.
Pipeline Performance Metrics
Record pipeline execution times, success rates, and error messages. Track the time from raw data receipt to final analysis output. Monitor the impact of pipeline changes on output quality and processing time. Maintain a changelog of pipeline versions and their associated metrics.
Common Failure Patterns in Genomic Data Infrastructure
Storage Exhaustion
Storage fills up faster than anticipated, causing analysis jobs to fail or new sequencing data to be rejected. This pattern is common when growth projections underestimate the size of intermediate files or when multiple projects generate data simultaneously. Prevention requires regular monitoring of storage utilization and proactive capacity planning.
Data Transfer Bottlenecks
Moving large genomic datasets between locations becomes a bottleneck, whether transferring from sequencing instruments to storage, between on-premises and cloud environments, or between collaborating institutions. Transfer times for terabyte-scale datasets can span days over standard internet connections. Solutions include using dedicated network connections, compression, and parallel transfer tools.
Pipeline Reproducibility Failures
Analysis pipelines produce different results when run at different times or on different systems. This pattern is often caused by unversioned software dependencies, reference genome updates, or differences in computational environments. Containerization and strict version control of all pipeline components are essential for reproducibility.
Cost Overruns in Cloud Deployments
Cloud costs exceed budget projections due to underestimated storage requirements, inefficient compute usage, or data egress charges. This pattern is common when organizations migrate to the cloud without implementing cost monitoring and optimization practices. Regular cost reviews and the use of cost management tools are essential.
Security and Compliance Gaps
Data protection requirements are not fully addressed, leading to regulatory violations or data breaches. This pattern is particularly concerning for genomic data, which is highly sensitive and subject to specific regulations. Regular security audits and compliance reviews are necessary to identify and address gaps.
Quality Control and Data Integrity
Data Validation at Ingestion
Validate all data entering the infrastructure to ensure completeness and integrity. Check file checksums, verify that all expected files are present, and confirm that file formats are valid. The MS-PyCloud pipeline includes data file integrity validation as a major component of its workflow [8].
Version Control for Reference Data
Maintain strict version control for reference genomes and annotation databases. Record the exact version of each reference used in every analysis. When reference versions change, document the impact on downstream results and consider whether previously analyzed samples need to be reprocessed.
Reproducibility Testing
Periodically rerun a set of standard test samples through the analysis pipeline to confirm that results are consistent. Compare new results to previously generated results and investigate any discrepancies. This practice is particularly important after pipeline changes or infrastructure migrations.
Audit Logging
Maintain audit logs that record who accessed what data, when, and for what purpose. Audit logs are essential for security monitoring and regulatory compliance. Review audit logs regularly to identify unusual access patterns.
Security and Regulatory Considerations
Data Protection Requirements
Genomic data is subject to a complex regulatory environment that varies by jurisdiction. The National Institutes of Health Genomic Data Sharing Policy establishes expectations for the sharing of genomic data generated through NIH-funded research [3]. Researchers must understand the specific requirements that apply to their data, including consent provisions, data use limitations, and security standards.
Cloud computing raises specific legal and ethical issues related to data control, data security, confidentiality and transfer, and accountability [10]. These points should be considered when negotiating legal arrangements to store genomic data on a large commercial cloud service provider's servers [10]. Diligent genomic cloud computing means leveraging security standards and evaluation processes as a means to protect data [10].
Data Localization and Transfer
Different legal systems have fundamental differences in the understanding of the right to data protection [9]. The increased outsourcing of information technology impedes the ability of researchers to act within the realm of existing local regulations [9]. When data crosses international borders, researchers must ensure that transfers comply with applicable regulations in all relevant jurisdictions.
Consent and Data Use
A well-conducted consent process, managed by qualified professionals, ensures the protection of research participants' rights [14]. Pre-established sequencing and data analysis parameters are crucial for ensuring reliable results, and clear guidelines must be provided on whether or not to disclose findings to participants [14]. Data storage remains a challenge due to both the size and sensitivity of the generated files [14].
Security Best Practices
Implement security measures appropriate to the sensitivity of the data being managed. These measures include encryption of data at rest and in transit, strong authentication mechanisms, role-based access control, and regular security assessments. For cloud deployments, understand the shared responsibility model, where the cloud provider is responsible for the security of the cloud infrastructure and the customer is responsible for the security of their data and applications.
Professional Escalation Criteria
When to Escalate Storage Issues
Escalate storage issues when utilization consistently exceeds 80 percent of capacity, when storage-related job failures occur more than once in a week, or when projected growth indicates that capacity will be exhausted within 30 days. Delaying escalation increases the risk of data loss or analysis downtime.
When to Escalate Security Concerns
Escalate security concerns immediately upon detection of unauthorized access, suspected data breach, or unusual access patterns. Also escalate when regulatory requirements change or when new data types with different sensitivity levels are introduced to the infrastructure.
When to Escalate Performance Issues
Escalate performance issues when analysis turnaround times degrade by more than 50 percent from baseline, when job failure rates exceed 5 percent, or when compute resources are consistently saturated for more than 24 hours. Performance degradation may indicate underlying infrastructure problems that require expert intervention.
When to Escalate Compliance Issues
Escalate compliance issues when there is uncertainty about whether data handling practices meet regulatory requirements, when new regulations take effect, or when data sharing arrangements change. Compliance failures can have serious consequences, including legal liability and loss of research funding.
Limitations and Considerations
Cost Management
The cost of genomic data infrastructure can be substantial, whether on-premises or in the cloud. On-premises costs include hardware, facilities, power, cooling, and personnel. Cloud costs include storage, compute, data transfer, and service fees. Organizations should conduct regular cost reviews and optimize their infrastructure to control expenses.
Technical Expertise Requirements
Building and managing genomic data infrastructure requires specialized technical expertise in areas such as storage systems, database administration, cloud computing, and bioinformatics. Organizations that lack this expertise in-house may need to invest in training or hire specialized staff. The genomic data science community has recognized the need to broaden access to training and professional development opportunities, particularly at institutions with limited resources [12].
Data Governance
Effective data governance requires clear policies for data ownership, access, sharing, and retention. These policies must be developed with input from researchers, IT staff, legal counsel, and institutional leadership. Governance policies should be reviewed regularly and updated as regulations and technologies evolve.
Environmental Considerations
The environmental impact of genomic data generation and storage is an emerging consideration in data governance [16]. The sector should catalogue low-value practices that can be easily discontinued with minimal disruption [16]. Research ethics committees should pilot how to consider environmental ethics when assessing and approving genomic research [16].
Frequently Asked Questions
What is the difference between FASTQ, BAM, and VCF files?
FASTQ files store raw sequencing reads with quality scores and are the standard output of sequencing instruments. BAM files store reads aligned to a reference genome and support random access through an index file. VCF files store genetic variants and genotypes identified through variant calling. Each format serves a distinct purpose in the analysis pipeline, and all three are typically present in a complete genomic data management system.
How much storage is needed for a whole-genome sequencing project?
Storage requirements depend on sequencing depth, file formats, and compression strategies. A single human whole-genome sequencing run at typical coverage generates hundreds of gigabytes of FASTQ data. A large cohort study involving thousands of samples requires terabytes or petabytes of storage. Alternative formats such as aGDS can substantially reduce storage requirements, with the UK Biobank 500k whole-genome sequencing dataset occupying only 1.10 tebibytes when converted to aGDS format [20].
What are the main advantages of cloud computing for genomic data?
Cloud computing offers on-demand access to computing resources, allowing users to rent instead of buy all required computing resources [6]. The primary advantages are elasticity, which allows resources to scale with demand, and the pay-as-you-go cost model, which shifts spending from capital to operational expenses. Cloud services also provide access to specialized infrastructure and expertise that may not be available locally.
How do I choose between on-premises and cloud infrastructure?
The choice depends on data sensitivity, regulatory requirements, budget, and technical expertise. On-premises infrastructure provides full control over data and avoids recurring cloud costs but requires significant capital investment and IT expertise. Cloud infrastructure offers scalability and flexibility but raises data protection and compliance considerations. Hybrid approaches that combine local and cloud resources can provide a balance between control and scalability.
What security measures are essential for genomic data?
Essential security measures include encryption of data at rest and in transit, strong authentication mechanisms, role-based access control, and audit logging. Genomic data contains the most private information about an individual and must be protected from unauthorized use [15]. For cloud deployments, understand the shared responsibility model and ensure that contractual agreements address data control, security, confidentiality, and accountability [10].
How can I ensure the reproducibility of genomic analyses?
Reproducibility requires strict version control of all pipeline components, including analysis tools, reference genomes, and parameter settings. Containerization packages tools and their dependencies to ensure consistent execution across different environments [6]. Document all pipeline parameters and maintain a changelog of pipeline versions. Periodically rerun standard test samples to confirm that results remain consistent.
What are the regulatory considerations for genomic data sharing?
Regulatory requirements vary by jurisdiction and by funding source. The National Institutes of Health Genomic Data Sharing Policy establishes expectations for genomic data generated through NIH-funded research [3]. Researchers must understand consent provisions, data use limitations, and security standards that apply to their data. International data transfers require careful attention to differences in data protection laws across jurisdictions [9].
How do I manage the cost of genomic data infrastructure?
Regularly review storage utilization and compute usage to identify optimization opportunities. Implement data lifecycle policies that archive or delete data that is no longer actively used. For cloud deployments, monitor costs by service, project, and user. Consider alternative file formats that reduce storage requirements without compromising analysis quality [13][20].
Related Bioinformatics Guides
- Cloud Computing in Modern Bioinformatics
- Predicting AMR from Genomic Data
- Data Sharing and Privacy in Genomic Research
- SAM and BAM Formats: Mapping, Alignment Representation, and Indexing with Samtools
- Orchestrating Bioinformatics at Scale: Workflows, Containers, and Cloud Infrastructures
References and Further Reading
- EMBL-EBI Training. European Bioinformatics Institute.
- NCBI Data Resources. National Center for Biotechnology Information.
- Genomic Data Sharing Policy. National Institutes of Health.
- The FAIR Guiding Principles. Scientific Data.
- Considerations for Genomic Data Privacy and Security when Working in the Cloud.. The Journal of molecular diagnostics : JMD, 2019.
- Nanopore sequencing data analysis using Microsoft Azure cloud computing service.. PloS one, 2022.
- Public-Private Partnerships in Cloud-Computing Services in the Context of Genomic Research.. Frontiers in medicine, 2017.
- MS-PyCloud: A Cloud Computing-Based Pipeline for Proteomic and Glycoproteomic Data Analyses.. Analytical chemistry, 2024.
- Computing patient data in the cloud: practical and legal considerations for genetics and genomics research in Europe and internationally.. Genome medicine, 2017.
- Genomic cloud computing: legal and ethical points to consider.. European journal of human genetics : EJHG, 2015.
- Big Data Analytics for Genomic Medicine.. International journal of molecular sciences, 2017.
- Diversifying the genomic data science research community.. Genome research, 2022.
- BINSEQ: A family of high-performance binary formats for nucleotide sequences.. 2026.
- Toward the establishment of best practice guidelines for human research in Genomic Medicine in Brazil.. 2026.
- Why Should a Genome Be Protected? Ethical, Legal, and Security Challenges in the Protection of Genomic Data.. 2026.
- Environmental considerations in human genomic data governance: overcoming normative challenges.. 2026.
- ClarID: a human-readable and compact identifier specification for biomedical metadata integration.. 2026.
- Centralized Review of Alzheimer’s Disease and Related Dementias Biomedical Repositories and Computational Methods. 2026.
- Scalable Genomic Data Management System on the Cloud. International Symposium on High Performance Computing Systems and Applications, 2017.
- Streamlining large-scale genomic data management: Insights from the UK Biobank whole-genome sequencing data. Cell Genomics, 2025.
- ScITree: Scalable Bayesian inference of transmission tree from epidemiological and genomic data. PLoS Comput. Biol., 2025.
- OpenGenomeBrowser: a versatile, dataset-independent and scalable web platform for genome data management and comparative genomics. bioRxiv, 2022.
- Scalable data management and processing for genomic computing. 2017.
- Plant, space and time - linked together in an integrative and scalable data management system for phenomic approaches in agronomic field trials. Plant Methods, 2020.
- Novel Hybrid Edge-Cloud Framework for Efficient and Sustainable Omics Data Management. Innovations in Digital Health Diagnostics and Biomarkers, 2024.
- Development of bio-cloud service for genomic analysis based on virtual infrastructure. Advances in Information Sciences and Service Sciences, 2012.
- Design of bio-cloud service for genomic analysis based on virtual infrastructure. Proceedings 6th International Conference on Computer Sciences and Convergence Information Technology Iccit 2011, 2011.
- Enabling genomic analysis on federated clouds. Proceedings 2014 IEEE International Conference on Big Data IEEE Big Data 2014, 2014.
- Building cloud computing environments for genome analysis in Japan. Human Genome Variation, 2022.
- A survey of approaches and frameworks to carry out genomic data analysis on the cloud. Proceedings 14th IEEE ACM International Symposium on Cluster Cloud and Grid Computing Ccgrid 2014, 2014.
This article is educational and does not replace validated analysis plans, institutional policy, clinical interpretation, or specialist review.