Hi everybody,
I have a R matrix and I want to create an SBML file from this matrix.
To do it I have n species. The name of each parameters are the line names and the name of each reactants are in column name.
I know that I will have n series of n+3 parameters.
here is the matrix
X1 X2 X3
Omega1 1.00 1.00 0.00
Omega2 0.00 0.00 1.00
Omega3 -1.00 0.00 0.00
Alpha 0.50 0.25 0.50
Gamma 1.00 0.75 -0.50
Beta 0.75 0.50 1.00
I want to have the next list of species
<listOfSpecies>
<species id="X1" initialConcentration="2" compartment="cell" boundaryCondition="false"/>
<species id="X2" initialConcentration="2" compartment="cell" boundaryCondition="false"/>
<species id="X3" initialConcentration="2" compartment="cell" boundaryCondition="false"/>
</listOfSpecies>
And a list of parameters for each species like this:
<listOfParameters>
<parameter id = "Alpha" value = "0.50"/>
<parameter id = "Gamma" value = "1.00"/>
<parameter id = "Omega1" value = "1.00"/>
<parameter id = "Omega2" value = "0.00"/>
<parameter id = "Omega3" value = "-1.00"/>
<parameter id = "Beta" value = "0.75"/>
</listOfParameters>
How can I create an SBML file that contains these informations ?
Cordially,
Fabien