getReactionInfo | R Documentation |
Title
getReactionInfo(equationList, parInfo = getParInfo(equationList))
el |
|
p |
list of reactions
Daniel Lill (daniel.lill@physik.uni-freiburg.de)
Daniel Lill (daniel.lill@physik.uni-freiburg.de)
Other SBML export:
eqnlist_addDefaultCompartment()
,
getCompartmentInfo()
,
getParInfo()
,
getSpeciesInfo()
,
getUnitInfo()
,
sbml_addOneCompartment()
,
sbml_addOneEvent()
,
sbml_addOneParameter()
,
sbml_addOneReaction()
,
sbml_addOneSpecies()
,
sbml_addOneUnit()
,
sbml_exportEquationList()
,
sbml_initialize()
,
sbml_kineticLawAddParameters()
,
sbml_reactionAddKineticLaw()
,
sbml_reactionAddModifiers()
,
sbml_reactionAddProducts()
,
sbml_reactionAddReactants()
,
sbml_validateSBML()
# simple el <- NULL el <- addReaction(el, from = "E + S", to = "ES", rate = "(kon)*E*S", description = "production of complex") el <- addReaction(el, from = "ES", to = "E + S", rate = "koff*ES", description = "decay of complex") el <- addReaction(el, from = "ES", to = "E + P", rate = "kcat*ES", description = "production of product") el <- eqnlist_addDefaultCompartment(el, "cytoplasm") # Need compartment information for SBML equationList <- el parInfo = getParInfo(equationList) # complex stoichiometries, modifier in production of complex el <- NULL el <- addReaction(el, from = "2*E + S", to = "ES", rate = "(kon)*E*S * 1/(1+kinh*P)", description = "production of complex") el <- addReaction(el, from = "ES", to = "2*E + S", rate = "koff*ES", description = "decay of complex") el <- addReaction(el, from = "ES", to = "E + P", rate = "kcat*ES", description = "production of product") el <- eqnlist_addDefaultCompartment(el, "cytoplasm") # Need compartment information for SBML equationList <- el parInfo = getParInfo(equationList) getReactionInfo(equationList,parInfo)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.