Cloud Storage and Transfer System

Published

Jun 2026

  • ID: DAS-007
  • Type: Foundations
  • Audience: Omics Data Scientists, Bioinformaticians, and Research Teams
  • Theme: Moving Validated Data into Durable and Collaborative Storage Systems

Acquiring and validating data are only part of the data acquisition lifecycle. Once datasets have been validated, they must be stored, transferred, organized, and shared in a manner that supports reproducibility, collaboration, and long-term accessibility.

The Cloud Storage and Transfer System provides the infrastructure layer connecting validated datasets to downstream analytical workflows and reference dataset assembly.

Why Cloud Storage Matters

Modern omics datasets can range from gigabytes to terabytes in size.

Examples include:

  • Large microbiome cohorts
  • Population-scale sequencing studies
  • RNA-Seq consortia
  • Single-cell atlases
  • Multi-omics projects

Managing these datasets requires storage systems that are scalable, accessible, and resilient.

Storage Options

Local Storage

Examples:

  • Laptops
  • Workstations
  • External drives

Advantages:

  • Simple
  • Immediate access

Limitations:

  • Limited capacity
  • Higher risk of data loss

Institutional Storage

Examples:

  • University servers
  • Research clusters
  • Shared file systems

Advantages:

  • Centralized management
  • Collaboration support

Cloud Storage

Examples:

  • AWS S3
  • Google Cloud Storage
  • Azure Blob Storage

Advantages:

  • Scalability
  • Durability
  • Global accessibility

Cloud Storage in the CDI Data Acquisition System

Code
flowchart TD

A[Metadata Acquisition System]
--> B[Data Download System]

B --> C[Data Validation System]

C --> D[Cloud Storage and Transfer System]

D --> E[Reference Dataset Assembly System]

flowchart TD

A[Metadata Acquisition System]
--> B[Data Download System]

B --> C[Data Validation System]

C --> D[Cloud Storage and Transfer System]

D --> E[Reference Dataset Assembly System]

Cloud storage serves as the bridge between validated acquisition outputs and downstream analytical workflows.

Only validated datasets should be transferred into long-term storage environments.

Metadata Assets
        ↓
Data Download
        ↓
Data Validation
        ↓
Cloud Storage
        ↓
Reference Dataset Assembly

This approach ensures that incomplete or corrupted files are not propagated into downstream workflows.

Organizing Cloud Data

A structured storage layout improves reproducibility, traceability, and collaboration.

The Cloud Storage and Transfer System should preserve the outputs generated during metadata acquisition, download, validation, and inventory generation.

Local project structure:

data/
├── metadata/
│   ├── runinfo-PRJNA322554.csv
│   ├── ena-PRJNA322554.tsv
│   └── srr-accessions.txt
│
├── manifests/
│   ├── download-manifest.tsv
│   └── test-manifest.tsv
│
├── inventory/
│   └── fastq-inventory.tsv
│
├── raw/
│   ├── sra/
│   └── fastq/
│
├── validation/
│   └── validation-report.tsv
│
└── reference-dataset/

After transfer, the same structure can be preserved in cloud storage.

Example S3 layout:

s3://reference-datasets/
├── metadata/
├── manifests/
├── inventory/
├── raw/
├── validation/
└── reference-dataset/

Preserving directory structure during transfer ensures that metadata, manifests, inventories, validation reports, and sequencing files remain linked throughout the data lifecycle.

Consistent organization simplifies:

  • Data transfer
  • Collaboration
  • Dataset auditing
  • Reproducibility
  • Long-term dataset management

Data Transfer Methods

Cloud storage systems support a variety of transfer mechanisms.

Common approaches include:

  • HTTPS
  • FTP
  • Aspera
  • rsync
  • Cloud synchronization tools
  • Object storage command-line interfaces

The choice depends on:

  • Dataset size
  • Available infrastructure
  • Transfer speed requirements
  • Security requirements
  • Repository support

For large sequencing datasets, cloud-native transfer tools and object storage services are often preferred because they provide scalability, fault tolerance, and efficient handling of large file collections.

Typical workflow:

Validated Dataset
        ↓
Transfer Tool
        ↓
Cloud Storage
        ↓
Analysis Environment

Reliable transfer methods help ensure that validated datasets remain complete, accessible, and reproducible throughout the data lifecycle.

Common Cloud Platforms

Several cloud platforms are commonly used for omics data storage and distribution.

Platform Example Service
Amazon Web Services S3
Google Cloud Platform Cloud Storage
Microsoft Azure Blob Storage
Institutional Infrastructure Object storage and research clusters

All of these platforms support large-scale storage of sequencing datasets and can be integrated into reproducible acquisition workflows.

Why Object Storage Works Well for Omics Data

Object storage systems are particularly well suited for sequencing datasets because they provide:

  • High durability
  • Elastic scalability
  • Metadata support
  • Access control
  • Multi-user collaboration
  • Geographic redundancy

These capabilities are especially valuable for large microbiome, RNA-seq, single-cell, and multi-omics projects where datasets may contain hundreds or thousands of sequencing files.

Cloud Storage as a Reproducibility Layer

Cloud storage is not merely a backup location.

It becomes part of the reproducibility infrastructure.

Validated Dataset
        ↓
Cloud Storage
        ↓
Shared Access
        ↓
Reference Dataset Assembly
        ↓
Downstream Analysis

By preserving validated datasets together with their metadata, manifests, inventories, and validation reports, cloud storage enables reproducible reuse of acquired data across projects, collaborators, and analytical environments.

Cloud Transfer Implementation

After datasets have passed validation, they can be transferred to cloud storage for long-term preservation, collaboration, and downstream reference dataset assembly.

Example:

bash scripts/bash/07a-sync-to-s3.sh \
  data \
  reference-datasets

Workflow:

Validated Dataset
        ↓
Cloud Transfer
        ↓
Cloud Storage
        ↓
Reference Dataset Repository

Cloud transfer scripts automate the movement of validated datasets while preserving directory structure, metadata assets, inventories, and validation reports.

Only validated datasets should be transferred into long-term storage environments.

Data Provenance

Every transfer should preserve provenance information.

Important records include:

  • Source repository
  • Study accession
  • Sample accession
  • Run accession
  • Transfer date
  • Validation status
  • Storage location

Provenance enables datasets to be traced, verified, and reconstructed throughout their lifecycle.

Example provenance chain:

Public Repository
        ↓
Metadata Acquisition
        ↓
Download Manifest
        ↓
FASTQ Inventory
        ↓
Validation Report
        ↓
Cloud Storage

Maintaining provenance records supports:

  • Reproducibility
  • Auditing
  • Collaboration
  • Dataset versioning
  • Long-term dataset management

Security and Access Control

Not all datasets are publicly accessible.

Researchers may encounter:

  • Controlled-access datasets
  • Institutional permissions
  • User authentication requirements
  • Data use agreements
  • Collaborative access restrictions

Storage systems should support appropriate access controls to ensure that datasets are accessed only by authorized users and handled according to applicable policies and agreements.

Common mechanisms include:

  • User authentication
  • Role-based permissions
  • Shared access groups
  • Audit logs
  • Secure transfer protocols
  • Encryption at rest
  • Encryption in transit

Although many public omics datasets are openly available, secure storage and access management become increasingly important when working with collaborative or controlled-access projects.

Healthy Reference Microbiome Example

A healthy reference microbiome project may follow:

Public Repositories
        ↓
Metadata Filtering
        ↓
Validated Downloads
        ↓
Cloud Storage
        ↓
Reference Dataset Assembly

Cloud storage becomes the staging area where validated datasets are organized, preserved, and prepared for integration into a reference dataset.

For example, metadata tables, download manifests, FASTQ inventories, validation reports, and sequencing files can all be preserved together within a shared storage environment.

Common Challenges

Researchers frequently encounter:

  • Storage limitations
  • Transfer interruptions
  • Version confusion
  • Duplicate files
  • Inconsistent folder structures
  • Permission errors
  • Missing provenance records

Planning storage workflows early helps reduce these risks and improves long-term dataset management.

Transfer Readiness Checklist

Before transferring data to cloud storage, verify that:

  • Metadata acquisition has been completed.
  • Download manifests have been generated.
  • FASTQ files have been downloaded successfully.
  • Validation checks have passed.
  • FASTQ inventory files have been created.
  • Cloud storage destinations are available.
  • Access permissions have been verified.
  • Transfer logging is enabled.

Checklist workflow:

Metadata
      ↓
Downloads
      ↓
Validation
      ↓
Inventory
      ↓
Cloud Transfer

Completing these checks helps ensure that only validated and reproducible datasets are transferred to long-term storage.

Summary

The Cloud Storage and Transfer System extends the CDI Data Acquisition System beyond the local workstation.

Validated Dataset
        ↓
Cloud Transfer
        ↓
Cloud Storage
        ↓
Collaborative Access
        ↓
Reference Dataset Assembly

By combining structured storage, reliable transfer methods, provenance tracking, validation records, and appropriate access controls, researchers can create durable and reproducible datasets suitable for long-term analysis and collaboration.

Looking Ahead

Once datasets have been acquired, validated, transferred, and organized, the next challenge is transforming them into coherent and reusable reference datasets.

In the next chapter, we explore the Reference Dataset Assembly System and the process of integrating validated data into analytical resources that support reproducible biological research.

Validated Datasets
        ↓
Cloud Storage
        ↓
Reference Dataset Assembly
        ↓
Reusable Research Asset