parse_reactome_pathway | R Documentation |
This function extracts pathway details, including description, metabolites, and proteins from an SBML file.
parse_reactome_pathway(file_name)
file_name |
Character. The file path of the SBML file. |
A list containing:
pathway_name |
Character. Name of the pathway. |
pathway_id |
Character. Reactome pathway ID. |
pathway_description |
Character. Text description of the pathway. |
component_info |
Data frame containing metabolites (CHEBI) and proteins (UniProt) involved in the pathway. |
Xiaotao Shen (xiaotao.shen@outlook.com)
# Download a sample SBML file from Reactome and parse it
pathway_info <- request_reactome_pathway("R-HSA-5652084")
print(pathway_info$pathway_name)
print(pathway_info$component_info)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.