Description Usage Arguments Value Author(s) Examples
Read an SBML file into R.
1 2 |
filename |
the name of the SBML file to parse |
text |
a string of SBML text to parse (instead of file) |
dom |
whether to convert directly to the S4 DOM ( |
strict |
whether to report warnings in addition to
errors or not ( |
schema |
whether to perform XML schema validation |
consistency |
whether to perform consistency checks; recommended but might cause performance deficiencies. |
a SBML
object, or a
SBMLDocument
if dom
is FALSE
.
Michael Lawrence
1 2 3 4 5 6 7 | # Read an SBML file
file <- system.file("sbml", "GlycolysisLayout.xml", package = "rsbml")
doc <- rsbml_read(file)
# Read an SBML string
string <- paste(readLines(file),collapse="\n")
doc <- rsbml_read(text = string)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.