AlphaGenome predicts three complementary transcription-related signals from DNA sequence: steady-state gene expression (RNA-seq), capped transcript initiation sites (CAGE), and nascent capped RNA at active promoters (PRO-cap). You can request any combination of these in a singleDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/BDB-Genomics/AlphaGenomeR/llms.txt
Use this file to discover all available pages before exploring further.
alphagenome_query() call and extract each with its dedicated function.
RNA-seq gene expression
RNA-seq signal represents the predicted steady-state abundance of RNA across the queried genomic interval. The model produces a track per cell type or tissue, allowing comparison of expression levels across biological contexts. Requested output token:"RNA_SEQ"Extractor function:
alphagenome_get_rna_seq(response_body)Returns:
list($values, $metadata) — a positions × tracks numeric matrix and a track annotation data frame.
CAGE transcription start sites
CAGE (Cap Analysis of Gene Expression) measures the 5’ ends of capped RNA molecules, pinpointing the exact nucleotide positions where transcription initiates. Predicted CAGE signal highlights active transcription start sites (TSSs) at base-pair resolution. Requested output token:"CAGE"Extractor function:
alphagenome_get_cage(response_body)Returns:
list($values, $metadata) — a positions × tracks numeric matrix of TSS signal.
PRO-cap nascent capped RNA
PRO-cap (Precision Run-On and capping) captures nascent RNA at the moment of active transcription, providing a real-time view of promoter engagement. Unlike RNA-seq, which reflects steady-state levels, PRO-cap signal marks promoters that are currently firing. Requested output token:"PROCAP"Extractor function:
alphagenome_get_procap(response_body)Returns:
list($values, $metadata) — a positions × tracks numeric matrix of nascent capped RNA signal.
Querying all three together
Request RNA-seq, CAGE, and PRO-cap in a single call to build a complete picture of transcriptional activity across your locus of interest.If a modality token is not included in
requested_outputs, its extractor returns NULL. Check before accessing $values or $metadata when the request is conditional.Related pages
- Chromatin accessibility — ATAC-seq, DNase-seq, and ChIP-seq predictions
- Splicing — splice site, junction, and usage predictions
- Modalities overview — all 11 supported modalities at a glance