Three extractor functions cover transcription-related signal modalities:Documentation 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_get_cage() for CAGE-seq transcription start site signal, alphagenome_get_dnase() for DNase-seq chromatin accessibility, and alphagenome_get_procap() for PRO-cap nascent transcription signal. All three follow the same interface — they accept the list returned by alphagenome_query() and return a named list with $values and $metadata, or NULL if the corresponding modality was not requested.
CAGE
Cap Analysis of Gene Expression (CAGE) measures transcription start site (TSS) activity at single-nucleotide resolution.alphagenome_get_cage() extracts the cage slot from the AlphaGenome response.
Function signature
Parameters
The list returned by
alphagenome_query(). Must have been called with "CAGE" in requested_outputs.Return value
Returns
NULL if "CAGE" was not in requested_outputs. Otherwise returns a named list:Example
DNase
DNase-seq measures genome-wide chromatin accessibility by identifying sites hypersensitive to DNase I cleavage.alphagenome_get_dnase() extracts the dnase slot from the AlphaGenome response.
Function signature
Parameters
The list returned by
alphagenome_query(). Must have been called with "DNASE" in requested_outputs.Return value
Returns
NULL if "DNASE" was not in requested_outputs. Otherwise returns a named list:Example
PRO-cap
PRO-cap (Precision Run-On and Capping) measures the density of RNA polymerases paused near transcription start sites, providing a direct readout of nascent transcription initiation.alphagenome_get_procap() extracts the procap slot from the AlphaGenome response.
Function signature
Parameters
The list returned by
alphagenome_query(). Must have been called with "PROCAP" in requested_outputs.Return value
Returns
NULL if "PROCAP" was not in requested_outputs. Otherwise returns a named list:Example
Each extractor returns
NULL if its corresponding modality was not included in requested_outputs. You can request multiple modalities in a single call: requested_outputs = c("CAGE", "DNASE", "PROCAP").