Forums

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


Posts: 102
Registered:
August 2004
Re: stoichiometries of modifiers 26 Apr '05 16:38 Go to previous messageGo to previous message


Another simple example:

S + E --r> E:S --> E + P

2 I + E --r> E:I2

The enzyme is only inhibited when there are two inhibitor molecules. Not
one. Two.

Using a continuous time Monte Carlo method (Kinetic MC, Gillespie,
<insert favorite name here>), if there is only one inhibitor molecule then
the waiting time for the next inhibition reaction is infinity (ie. it'll
never happen). If you're using ODEs, the rate can still be positive.

The stoichiometry of the modifier then becomes important.

Stefan Hoops wrote:

>My impression is that people try to automatically assign a rate law
>based on the stoichiometry of substrate, products and modifiers. Since
>SBML supports rate laws explicitly their exists no need to support any
>such automatism of a particular software. This software could just read
>the kinetic law.
>
>Thanks,
>Stefan
>
>

My code is Fortran95 and needs to be fast. Really fast. It's not
straightforward to quickly read in an XML parsed CellML or whatever
kinetic rate law and evaluate it.
Now if everyone can agree on an unique identifier for each form of a
rate law, that'd be useful. Otherwise, it's not worth my time or effort
to figure out which rate law the SBML is encoding and match it to some
unique internal representation. Want an example? How about:

SBML encodes: r = k1 * (X2 * X1^2 + 2*X1*X2*X3 + X2*X3^2 + X4*X1^2 +
2*X1*X3*X4 + X4*X3^2) / k2 / (X1 + X3)

which also simplifies to r = k1 * (X1 + X3) * (X2 + X4) / k2

So which is it? They're algebraically equivalent, but I'd want to store
and evaluate the latter one. Try to think of a way, in code, to simplify
the one rate law to the other. Now generalize it for any algebraic
equation. Now do that for every rate law encoded in SBML. For a big
reaction network. Can you say sloooow? And the internal representation
must be able to be quickly evaluated. Even Matlab's simplify function
sometimes has problems.

I'd rather have SBML encode a unique integer for every rate law form and
then a simulation program can simply look it up from a table and
evaluate. The programmer of the tool explicitly knows the form of the
rate law so there's no surprises. From the user's perspective, the GUI
can display a lot of information about the rate law and its meaning.

Those are my two bits.

-Howard Salis

>On Tue, 26 Apr 2005 12:27:37 -0500
>Howard Salis <salis@cems.umn.edu> wrote:
>
>
>
>>I will give you an example of vague. This example is located in most
>>classic textbooks on enzyme kinetics.
>>
>>There is a substrate S, an enzyme E, an inhibitor I, and a product P.
>>
>>Consider the three classic types of inhibition: competitive,
>>non-competitive, and uncompetitive.
>>
>>Competitive:
>>E + S --r> E:S --> E + P
>>E + I --r> E:I
>>
>>Uncompetitive:
>>E + S --r> E:S --> E + P
>>E:S + I --r> E:S:I
>>
>>Non-competitive:
>>E + S --r> E:S --> E + P
>>E + I --r> E:I
>>E:S + I --r> E:S:I
>>
>>If you want to use the steady state approximation on these reactions,
>>the total balance is S --> P with some rate law (Michaelis Menten
>>like). In your definition of modifier, for the total balance on these
>>reactions (which is S --> P), the inhibitor and enzyme are both
>>modifiers. However, the rate laws of all three of these types of
>>inhibition are different. They all depend on the numbers of molecules
>>of inhibitor and enzyme differently. To correctly calculate the rates
>>of these reactions, you then need to know how the modifier affects the
>>rate. The information for the reaction then needs data for not only
>>the reactants and products, but also for the 'modifiers'.
>>
>>This is the simplest of examples. What happens when something more
>>realistic comes along?
>>
>>Also, the rate law I gave as a power law is dependent on only the
>>reactants of the reaction and rightly does not distinguish between
>>reactants whose stoichiometry is zero or non-zero. Species whose
>>stoichiometries may be zero for the total balance of the reaction may
>>still be a variable within the rate law. And that is why the term
>>'modifier' is vague: it doesn't say how the numbers of molecules of
>>the species affects the rate of the reaction.
>>
>>-Howard Salis
>>
>>Pedro Mendes wrote:
>>
>>
>>
>>>On Monday 25 April 2005 10:14 pm, Howard Salis wrote:
>>>
>>>
>>>
>>>
>>>>I think the idea of 'modifiers' is too vague to be useful.
>>>>
>>>>
>>>>
>>>>
>>>I think the discussions in this list are starting to convince me that
>>>anyone who wants to be doing any modeling of biochemical systems
>>>should first have to pass an "Enzyme Kinetics" course. The concept of
>>>modifier is not vague at all, it is quite well defined. It seems to
>>>me that there are a number of people out there that want to define
>>>this concept according to whatever their software thinks a modifier
>>>is.
>>>
>>>Power-law models do not distinguish between substrates, products or
>>>modifiers. For power laws everything is an effector (hey, there's
>>>another word that I expect will have a long discussion too).
>>>
>>>As someone else already stated in this thread, a modifier is not
>>>changed by the reaction therefore the only number that could be
>>>attributed to its stoichiometry is zero.
>>>
>>>Also, reactions do not need any modifier (eg activator) to proceed.
>>>If you put NADH in contact with oxygen, it is only a matter of time
>>>that you end up with NADP+ and water - no enzymes required.
>>>
>>>Anyway, I am one of the defenders that software should be
>>>sufficiently user-friendly to allow non-speciallists to carry out
>>>simulation. But this has always meant to me that they do not need to
>>>be speciallists in mathematics, numerical analysis, or software
>>>engineering. They DO need to know biochemistry if they want to model
>>>biochemical systems - I'm sorry for this lengthy rant, but I am
>>>strongly opposed that we should bastardize terms that are objective
>>>and quite specific (and old) just because some software happens to
>>>use them in some wrong way.
>>>
>>>
>>>
>>>
>>
>>
>
>
>
>



      

SubjectPosterDate
Read Message   stoichiometries of modifiers Hiroyuki Kuwahara25 Apr '05 09:56
Read Message   Re: stoichiometries of modifiers Pedro Mendes25 Apr '05 13:39
Read Message   Re: stoichiometries of modifiers emek25 Apr '05 14:26
Read Message   Re: stoichiometries of modifiers Hiroyuki Kuwahara25 Apr '05 18:08
Read Message   Re: stoichiometries of modifiers emek26 Apr '05 01:14
Read Message   Re: stoichiometries of modifiers Hiroyuki Kuwahara26 Apr '05 08:52
Read Message   Re: stoichiometries of modifiers emek26 Apr '05 11:24
Read Message   RE: stoichiometries of modifiers Herbert Sauro25 Apr '05 14:40
Read Message   Re: stoichiometries of modifiers zucker25 Apr '05 16:27
Read Message   RE: stoichiometries of modifiers Hiroyuki Kuwahara25 Apr '05 18:09
Read Message   Re: stoichiometries of modifiers Howard25 Apr '05 19:14
Read Message   Re: stoichiometries of modifiers Pedro Mendes26 Apr '05 05:30
Read Message   Re: stoichiometries of modifiers Howard26 Apr '05 10:27
Read Message   Re: stoichiometries of modifiers Stefan Hoops26 Apr '05 15:16
Read Message   Re: stoichiometries of modifiers Greg Blumenthal26 Apr '05 16:01
Read Message   Re: stoichiometries of modifiers Nicolas Le Novere27 Apr '05 01:29
Read Message   Re: stoichiometries of modifiers Mike Hucka27 Apr '05 21:07
Read Message   Re: stoichiometries of modifiers  Howard26 Apr '05 16:38
Read Message   Re: stoichiometries of modifiers Pedro Mendes26 Apr '05 17:22
Read Message   Re: stoichiometries of modifiers Howard26 Apr '05 17:36
Read Message   Re: stoichiometries of modifiers Pedro Mendes26 Apr '05 19:01
Read Message   Re: stoichiometries of modifiers Howard26 Apr '05 20:25
Read Message   Re: stoichiometries of modifiers J.Weimar27 Apr '05 01:06
Read Message   Re: stoichiometries of modifiers Howard27 Apr '05 08:43
Read Message   Re: stoichiometries of modifiers Pedro Mendes27 Apr '05 10:32
Read Message   Re: stoichiometries of modifiers Stefan Hoops27 Apr '05 11:02
Read Message   Re: stoichiometries of modifiers Darren J Wilkinson27 Apr '05 12:55
Read Message   Re: stoichiometries of modifiers Howard27 Apr '05 14:55
Read Message   Re: stoichiometries of modifiers Ben Bornstein27 Apr '05 15:56
Read Message   Re: stoichiometries of modifiers Tomas Radivoyevitch27 Apr '05 18:47
Read Message   Re: stoichiometries of modifiers Mike Hucka27 Apr '05 20:46
Read Message   Re: stoichiometries of modifiers Howard27 Apr '05 23:25
Read Message   Re: stoichiometries of modifiers Howard28 Apr '05 09:12
Read Message   RE: stoichiometries of modifiers Andrew Finney07 May '05 01:59
Read Message   RE: stoichiometries of modifiers Andrew Finney07 May '05 01:59
Read Message   Re: stoichiometries of modifiers Mike Hucka17 Jun '05 18:52
Read Message   Re: stoichiometries of modifiers Mike Hucka27 Apr '05 20:52
Read Message   Re: stoichiometries of modifiers Howard27 Apr '05 23:41
Read Message   Re: stoichiometries of modifiers Stefan Hoops28 Apr '05 04:56
Read Message   Re: stoichiometries of modifiers Stefan Hoops28 Apr '05 08:31
Read Message   Re: stoichiometries of modifiers Howard28 Apr '05 10:34
Read Message   Re: stoichiometries of modifiers Upinder Singh Bhalla28 Apr '05 19:34
Read Message   Re: stoichiometries of modifiers Mike Hucka07 May '05 05:29
Read Message   Re: stoichiometries of modifiers Upinder Singh Bhalla07 May '05 05:48
Read Message   Re: stoichiometries of modifiers Mike Hucka13 May '05 18:08
Read Message   RE: stoichiometries of modifiers Andrew Finney22 May '05 00:21
Read Message   RE: stoichiometries of modifiers Mike Hucka17 Jun '05 18:47
Read Message   Re: stoichiometries of modifiers Pedro Mendes28 Apr '05 05:34
Read Message   RE: stoichiometries of modifiers Andrew Finney07 May '05 01:59
Read Message   Re: stoichiometries of modifiers Ed Frank27 Apr '05 08:17
Read Message   Re: stoichiometries of modifiers Mike Hucka28 Apr '05 00:40
Read Message   Re: stoichiometries of modifiers Ed Frank28 Apr '05 07:45
Read Message   Re: stoichiometries of modifiers Darren J Wilkinson29 Apr '05 14:31
Read Message   Re: stoichiometries of modifiers emek29 Apr '05 15:15
Read Message   Re: stoichiometries of modifiers Darren J Wilkinson30 Apr '05 00:47
Read Message   Re: stoichiometries of modifiers Mike Hucka07 May '05 05:29
Read Message   Re: stoichiometries of modifiers Pedro Mendes07 May '05 22:14
Read Message   Re: stoichiometries of modifiers Stefan Hoops27 Apr '05 04:00
Read Message   Re: stoichiometries of modifiers ginkel27 Apr '05 12:12
Read Message   Re: stoichiometries of modifiers Hiroyuki Kuwahara26 Apr '05 11:17
Read Message   Re: stoichiometries of modifiers Mike Hucka27 Apr '05 21:49
Read Message   Re: stoichiometries of modifiers - is SBML too &qu... Darren J Wilkinson26 Apr '05 14:12
Read Message   is SBML too"narrow"? Nicolas Le Novere26 Apr '05 14:56
Read Message   Re: is SBML too"narrow"? Mike Hucka26 Apr '05 19:26
Read Message   Re: is SBML too"narrow"? Sven Sahle27 Apr '05 01:23
Read Message   Re: is SBML too"narrow"? Mike Hucka27 Apr '05 21:36
Read Message   Re: is SBML too"narrow"? Nicolas Le Novere28 Apr '05 00:50
Read Message   Re: is SBML too"narrow"? Ed Frank28 Apr '05 07:57
Read Message   RE: is SBML too"narrow"? Andrew Finney07 May '05 01:59
Read Message   Re: is SBML too"narrow"? Nicolas Le Novere27 Apr '05 01:35
Read Message   Re: is SBML too"narrow"? Rainer Machne28 Apr '05 06:13
Read Message   Re: is SBML too"narrow"? Fabien Campagne28 Apr '05 11:33
Read Message   Re: stoichiometries of modifiers - is SBML too &q... Pedro Mendes26 Apr '05 15:15
Read Message   Re: stoichiometries of modifiers - is SBML too &qu... Mike Hucka26 Apr '05 20:55
Read Message   Re: stoichiometries of modifiers - is SBML too&quo... Tomas Radivoyevitch26 Apr '05 22:23
Read Message   Re: stoichiometries of modifiers - is SBML too&quo... Mike Hucka27 Apr '05 21:59
Read Message   SBML packaging Nicolas Le Novere28 Apr '05 00:59
Read Message   Re: SBML packaging Mike Hucka02 May '05 00:29
Read Message   Re: stoichiometries of modifiers - is SBML too &qu... Darren J Wilkinson27 Apr '05 12:47
Read Message   Re: stoichiometries of modifiers - is SBML too &qu... Mike Hucka06 May '05 03:16
Read Message   Re: stoichiometries of modifiers - is SBML too &q... Pedro Mendes07 May '05 21:32
Read Message   RE: stoichiometries of modifiers - is SBML too&quo... Andrew Finney07 May '05 01:59
Read Message   RE: stoichiometries of modifiers Andrew Finney07 May '05 01:59
Read Message   RE: stoichiometries of modifiers Herbert Sauro13 May '05 18:17
Previous Topic:New Version of SBW
Next Topic:Complementary Alternative to MathML Needed
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.