equateModels {SBMLR} | R Documentation |
This function tests the equivalence of two models with respect to the species and reaction data frames generated by summary.
equateModels(model1,model2)
model1 |
The first of the two model objects of class SBML which are to be compared. |
model2 |
The second model object. |
A list containing the following two boolean dataframes
species |
The equality of species information tabularized as a data frame. |
reactions |
The equality of reaction information tabularized as a dataframe. |
Tomas Radivoyevitch (radivot@hal.cwru.edu)
library(SBMLR) curto1=readSBMLR(file.path(system.file(package="SBMLR"), "models/curto.r")) curto2=readSBML(file.path(system.file(package="SBMLR"), "models/curto.xml")) equateModels(curto1,curto2)