AlphaGenomeR provides three extractor functions for splicing-related predictions: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_splice_sites() for per-position donor and acceptor site scores, alphagenome_get_splice_junctions() for predicted splice junction read counts, and alphagenome_get_splice_usage() for splice site usage rates. All three accept the list returned by alphagenome_query() and return NULL if the corresponding modality was not requested.
alphagenome_get_splice_sites()
Splice site predictions score each genomic position in the queried interval for its likelihood of functioning as a donor (5′) or acceptor (3′) splice site.alphagenome_get_splice_sites() accesses the splice_sites slot of the Python response object.
Function signature
Parameters
The list returned by
alphagenome_query(). Must have been called with "SPLICE_SITES" in requested_outputs.Return value
Returns
NULL if "SPLICE_SITES" was not in requested_outputs. Otherwise returns a named list:Example
alphagenome_get_splice_junctions()
Splice junction predictions represent predicted read support for specific exon–exon junctions within the queried interval.alphagenome_get_splice_junctions() accesses the splice_junctions slot of the Python response object.
Function signature
Parameters
The list returned by
alphagenome_query(). Must have been called with "SPLICE_JUNCTIONS" in requested_outputs.Return value
Returns
NULL if "SPLICE_JUNCTIONS" was not in requested_outputs. Otherwise returns a named list:Example
alphagenome_get_splice_usage()
Splice site usage predictions capture the fraction of transcripts that use each splice site, providing a view of alternative splicing regulation.alphagenome_get_splice_usage() accesses the splice_site_usage slot (note the internal Python attribute name) of the response object.
Function signature
Parameters
The list returned by
alphagenome_query(). Splice site usage data is returned when splicing outputs are requested (e.g., "SPLICE_SITES" or "SPLICE_JUNCTIONS"). The function reads the splice_site_usage attribute from the Python response object directly.Return value
Returns
NULL if splice site usage data is not present in the response. Otherwise returns a named list:Example
alphagenome_get_splice_usage() reads the splice_site_usage attribute from the Python response object directly. It does not require a dedicated requested_outputs token — splice usage data is available when splicing outputs are requested. The function returns NULL if the attribute is absent from the response.