Accession Systems

Published

Jun 2026

  • ID: DAS-003
  • Type: Foundations
  • Audience: Omics Data Scientists, Bioinformaticians, and Research Teams
  • Theme: Understanding How Public Data Are Organized

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.

Why Accession Systems Matter

Accession identifiers provide a structured way to organize, track, retrieve, and reference biological data.

They help researchers answer questions such as:

  • Which project generated these data?
  • Which sample produced these sequences?
  • Which experiment was performed?
  • Which files should be downloaded?

Without accession systems, large-scale public repositories would be difficult to navigate and maintain.

From Study Discovery to Accessions

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

The Study Hierarchy

A common hierarchy used by major sequence repositories is:

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]

Each level describes a different aspect of the data acquisition process.

Common Accession Prefixes

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.

BioProject

A BioProject represents the overall research initiative.

Examples:

  • Healthy gut microbiome study
  • RNA-Seq cancer study
  • Agricultural genomics project

Common accession prefix:

PRJNA123456

BioSample

A BioSample describes an individual biological specimen.

Examples:

  • Stool sample
  • Blood sample
  • Tissue biopsy

BioSample records often contain valuable metadata such as age, sex, disease status, body site, and geographic origin.

Common accession prefix:

SAMN12345678

Experiment

An Experiment describes how a sample was processed and sequenced.

Examples include:

  • 16S rRNA sequencing
  • Shotgun metagenomics
  • RNA-Seq
  • Single-cell sequencing

Common accession prefix:

SRX1234567

Run

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

Following the Breadcrumbs

Researchers often begin with a BioProject and progressively navigate toward downloadable sequencing files.

Code
flowchart TB

PRJNA[BioProject]
--> SAMN[BioSamples]

SAMN --> SRX[Experiments]

SRX --> SRR[Runs]

SRR --> FASTQ[FASTQ Files]

flowchart TB

PRJNA[BioProject]
--> SAMN[BioSamples]

SAMN --> SRX[Experiments]

SRX --> SRR[Runs]

SRR --> FASTQ[FASTQ Files]

This progression is common across many public repositories.

Repository Variations

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

Example Workflow

Suppose we identify a microbiome study relevant to our project.

Code
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.

Healthy Reference Microbiome Example

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.

Looking Ahead

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.