Code
flowchart TD
A[BioProject]
--> B[BioSample]
B --> C[Experiment]
C --> D[Run]
D --> E[FASTQ Files]flowchart TD A[BioProject] --> B[BioSample] B --> C[Experiment] C --> D[Run] D --> E[FASTQ Files]
Public repositories contain enormous amounts of biological data, but locating the correct files often requires navigating multiple layers of identifiers and accession systems.
A single study may contain hundreds or thousands of samples, multiple experiments, and numerous sequencing runs. Understanding how these entities relate to one another is essential for efficient data acquisition and reproducible dataset assembly.
This chapter introduces the accession systems commonly encountered in public omics repositories and explains how they connect different components of a study.
Accession identifiers provide a structured way to organize, track, retrieve, and reference biological data.
They help researchers answer questions such as:
Without accession systems, large-scale public repositories would be difficult to navigate and maintain.
In the previous chapter, study discovery produced a shortlist of candidate BioProjects relevant to a scientific objective. Accession systems provide the mechanism for navigating from those studies to the samples, experiments, runs, and files required for downstream analysis.
Candidate BioProjects
↓
BioSamples
↓
Experiments
↓
Runs
↓
FASTQ Files
A common hierarchy used by major sequence repositories is:
flowchart TD
A[BioProject]
--> B[BioSample]
B --> C[Experiment]
C --> D[Run]
D --> E[FASTQ Files]flowchart TD A[BioProject] --> B[BioSample] B --> C[Experiment] C --> D[Run] D --> E[FASTQ Files]
Each level describes a different aspect of the data acquisition process.
| Level | Description | Example Prefix |
|---|---|---|
| BioProject | Research project | PRJNA |
| BioSample | Biological specimen | SAMN |
| Experiment | Sequencing experiment | SRX |
| Run | Sequencing output | SRR |
Throughout this guide, two human gut microbiome BioProjects are used to demonstrate accession navigation and data acquisition workflows:
| BioProject | Sequencing Layout | Platform |
|---|---|---|
| PRJNA322554 | Single-end | 454 GS FLX Titanium |
| PRJNA802976 | Paired-end | Illumina MiSeq |
These examples show how accession systems connect study-level records to individual sequencing runs and downloadable files.
A BioProject represents the overall research initiative.
Examples:
Common accession prefix:
PRJNA123456
A BioSample describes an individual biological specimen.
Examples:
BioSample records often contain valuable metadata such as age, sex, disease status, body site, and geographic origin.
Common accession prefix:
SAMN12345678
An Experiment describes how a sample was processed and sequenced.
Examples include:
Common accession prefix:
SRX1234567
A Run represents the actual sequencing output generated from an experiment.
Runs typically correspond to downloadable sequence files and are often the most important accession level during data acquisition. In the CDI Data Acquisition System, run accessions are used to generate FASTQ download URLs, checksums, and file inventories.
Common accession prefix:
SRR12345678
Although accession systems differ slightly between repositories, the underlying concepts are similar.
| Repository | Study | Sample | Data |
|---|---|---|---|
| NCBI | BioProject | BioSample | SRA |
| GEO | GSE | GSM | Supplementary Files |
| ENA | Project | Sample | Runs |
| DDBJ | BioProject | BioSample | DRA |
Suppose we identify a microbiome study relevant to our project.
flowchart TD
A[BioProject]
--> B[BioSample Metadata]
B --> C[Experiment]
C --> D[Run Accessions]
D --> E[Data Download]flowchart TD A[BioProject] --> B[BioSample Metadata] B --> C[Experiment] C --> D[Run Accessions] D --> E[Data Download]
Researchers often begin with a BioProject and work downward toward downloadable run files.
A healthy reference microbiome workflow may proceed as follows:
Healthy Reference Objective
↓
Identify BioProject
↓
Retrieve BioSamples
↓
Review Metadata
↓
Select Eligible Samples
↓
Collect Run Accessions
↓
Generate Download Manifest
↓
Download Data
This process illustrates why accession systems are central to reproducible data acquisition.
Accession systems provide the roadmap to biological data, but metadata determine whether those data are relevant to a scientific objective.
In the next chapter, we explore metadata acquisition and demonstrate how BioProjects, BioSamples, Experiments, and Runs can be transformed into structured metadata assets that support study evaluation, sample selection, download planning, and reference dataset construction.