Forums

F.A.Q. F.A.Q.    Register Register    Login Login    Home Home
Search Search
SBML Discussions » sbml-discuss » compartmentType
Show: Today's Posts  :: Message Navigator
| Subscribe to topic 
Return to the default flat view Create a new topic Submit Reply
AuthorTopic
Nicolas Le Novere


Posts: 469
Registered:
October 2003
compartmentType 23 Nov '05 08:17 Go to previous message

A compartmentType is a class of compartments. Compartments can refer
to compartmentType 'id', and this 'id' can be used in generalized
reactions.


<listOfCompartmentType>
<compartmentType id="mito" />
</listOfCompartmentType>
<listOfSpeciesType>
<speciesType id="ATP" />
<speciesType id="ADP" />
</listOfSpeciesType>
<listOfCompartment>
<compartment id="cytosol" />
<compartment id="mito1" compartmentType="mito" />
<compartment id="mito2" compartmentType="mito" />
</listOfCompartment>
<listOfSpecies>
<species id="ATP_cytosol" speciesType="ATP" compartment="cytosol" />
<species id="ADP_cytosol" speciesType="ADP" compartment="cytosol" />
<species id="ATP_mito" speciesType="ATP" compartment="mito" />
<species id="ADP_mito" speciesType="ADP" compartment="mito" />
</listOfSpecies>
<listOfReactions>
<reaction id="ATPase">
<listOfReactants>
<speciesReference species="ATP" >
</listOfReactants>
<listOfProducts>
<speciesReference species="ADP" >
</listOfProducts>
</reaction>
</listOfReactions>

This creates three reactions. The first expansion is based on the
speciesType (I use SBML to explain, but of course, intermediate SBML
files should not be used.):

<reaction id="ATPase_cytosol">
<listOfReactants>
<speciesReference species="ATP_cytosol" >
</listOfReactants>
<listOfProducts>
<speciesReference species="ADP_cytosol" >
</listOfProducts>
</reaction>

<reaction id="ATPase_mito">
<listOfReactants>
<speciesReference species="ATP_mito" >
</listOfReactants>
<listOfProducts>
<speciesReference species="ADP_mito" >
</listOfProducts>
</reaction>

Since ATP_mito and ADP_mito point to a generalized compartment, a
second expansion is performed:

<reaction id="ATPase_cytosol">
<listOfReactants>
<speciesReference species="ATP_cytosol" >
</listOfReactants>
<listOfProducts>
<speciesReference species="ADP_cytosol" >
</listOfProducts>
</reaction>

<reaction id="ATPase_mito1">
<listOfReactants>
<speciesReference species="ATP_mito1" >
</listOfReactants>
<listOfProducts>
<speciesReference species="ADP_mito1" >
</listOfProducts>
</reaction>

<reaction id="ATPase_mito2">
<listOfReactants>
<speciesReference species="ATP_mito2" >
</listOfReactants>
<listOfProducts>
<speciesReference species="ADP_mito2" >
</listOfProducts>
</reaction>

Note that the species ATP_mito1 and ATP_mito2 have obligatory the same
initialAmount or initialConcentration.


--
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

      

SubjectPosterDate
Read Message   compartmentType  Nicolas Le Novere23 Nov '05 08:17
Read Message   Re: compartmentType Howard23 Nov '05 15:51
Read Message   Re: compartmentType Nicolas Le Novere24 Nov '05 00:56
Read Message   RE: compartmentType rphair24 Nov '05 22:43
Read Message   RE: compartmentType Nicolas Le Novere25 Nov '05 11:13
Read Message   Re: compartmentType Howard25 Nov '05 21:04
Read Message   Re: adhoc Vs. rational (was: compartmentType) Nicolas Le Novere26 Nov '05 07:52
Read Message   Re: compartmentType Johan Elf26 Nov '05 08:26
Read Message   RE: compartmentType Andrew Finney27 Nov '05 05:52
Read Message   RE: compartmentType roysam28 Nov '05 05:26
Read Message   Re: compartmentType Pedro Mendes28 Nov '05 07:41
Read Message   Re: compartmentType Hiroyuki Kuwahara28 Nov '05 21:02
Read Message   Re: compartmentType Pedro Mendes29 Nov '05 07:43
Previous Topic:Rate rules
Next Topic:RE: naïve thoughts on Species Conse =?iso-8859-1?Q?rvation_Laws?=
Go to forum:
-=] Back to Top [=-

Powered by FUDforum. (Copyright Advanced Internet Designs Inc.)

Please use our issue tracking system for any questions or suggestions about this website.