importSBML: Import SBML Models using the Bioconductor package 'rsbml'

Description Usage Arguments Value Examples

View source: R/importSBML.R

Description

A simple function for importing sbml models from a extensive markup language file.

Usage

1
importSBML(filename, times, meas_input)

Arguments

filename

name of the import file. Should be located in the working directory.

times

timestep at which the function should be evaluated

meas_input

measurements have to be given in order to analyze the data

Value

returns a odeModel object

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
## Not run:  

t <- uvbData[,1]
y <- uvbData[,1:3]
modelFile <- system.file("extdata","BIOMD0000000545_url.xml", package = "seeds")

# generate an odeModel object
uvb <- importSBML(modelFile, times = t, meas = y)


## End(Not run)

seeds documentation built on July 14, 2020, 1:07 a.m.