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_rna_seq() extracts RNA-seq gene expression predictions from the list returned by alphagenome_query(). It uses reticulate::py_get_attr() to access the rna_seq slot of the Python response object and converts both the numeric values array and the track metadata data frame into native R objects. If "RNA_SEQ" was not included in requested_outputs, the function returns NULL.
Function signature
Parameters
The list returned by
alphagenome_query(). This object wraps the converted Python prediction response. Pass the return value of alphagenome_query() directly without modification.Return value
Returns
NULL if "RNA_SEQ" was not included in requested_outputs when calling alphagenome_query().Otherwise returns a named list with two elements:Example
alphagenome_get_rna_seq() returns NULL if "RNA_SEQ" was not listed in requested_outputs. Always check the return value before accessing $values or $metadata.