| Author | Topic |
Posts: 469
Registered: October 2003
|
|
parameters and namespaces
|
29 Apr '05 02:05
|
 |
|
In the following fake (dumb) code, how can I interpret the ratelaw,
i.e. what are the values of "cyt" and "nuc"?
<listOfCompartments>
<compartment id="cyt" size="5e-15"/>
<compartment id="nuc" size="e-15"/>
</listOfCompartments>
<listOfSpecies>
<species id="A" compartment="cyt" initialConcentration="0.5" />
<species id="B" compartment="nuc" initialConcentration="0" />
</listOfSpecies>
<listOfReactions>
<reaction id="transport">
<listOfReactants>
<reactant speciesReference="A" />
</listOfReactants>
<listOfProducts>
<product speciesReference="B">
</listOfProducts>
<kineticLaw>
<math>
<apply>
<minus/>
<apply>
<times/>
<ci>nuc</ci>
<ci>A</ci>
<ci>cyt</ci>
</apply>
<apply>
<times/>
<ci>cyt</ci>
<ci>B</ci>
<ci>nuc</ci>
</apply>
</apply>
</math>
<listOfParameters>
<parameter id="cyt" value="0.1" />
<parameter id="nuc" value="0.01" />
</listOfParameters>
</kineticLaw>
</reaction>
</listOfReactions>
--
Nicolas LE NOVÈRE, Computational Neurobiology,
EMBL-EBI, Wellcome-Trust Genome Campus, Hinxton, Cambridge, CB10 1SD, UK
Tel: +44(0)1223 494 521, Fax: +44(0)1223 494 468, Mob: +33(0)689218676
http://www.ebi.ac.uk/~lenov AIM screen name: nlenovere
|
|
|