Description Usage Arguments Value Note Author(s) References See Also Examples
View source: R/getPathwaysForSBML.R
Extracts all pathway information from an rsbml document containing a metabolic reconstruction database (e.g. Recon2) and returns the subset of these pathways that is associated with the reactions in the given model. The pathway information is parsed from the "<notes>" tag of each reaction.
1 | getPathwaysForSBML(model, database)
|
database |
an rsbml object of class |
model |
an rsbml object of class |
A vector of type character
that contains all the pathways
relevant for the given model according to the specified database. Note
that duplicate pathways do not appear twice in the return value.
If the reactions in the database document provided in the argument
database
do not contain any "<notes>" with tags with pathway information
indicated by the string "SUBSYSTEM", no pathway information can be extracted.
Anand Gavai, Hannes Hettling
Thiele, I. et al. Nat Biotech, 2013
buildSBMLFromPathways
buildSBMLFromGenes
extractPathways
1 2 3 4 5 6 7 8 | ##Build a model from query genes
data("Recon2")
database <- Recon2
query <- c("218.1", "223.1") ##query gene identifiers
m <- buildSBMLFromGenes(query, database)
##extract all pathways for that model
getPathwaysForSBML(m, database)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.