Team:Aberdeen Scotland/internal/stochastic

From 2009.igem.org

(Difference between revisions)
m (Stochastic Simulations)
Line 13: Line 13:
3. Multiply each term in the deterministic equations by tau.
3. Multiply each term in the deterministic equations by tau.
-
4. Assign the label λ to new value of each term.
+
4. Assign the label λ to the new value of each term.
5. Input the value of λ into the Poisson random number generator
5. Input the value of λ into the Poisson random number generator

Revision as of 12:04, 11 August 2009

University of Aberdeen iGEM 2009

Stochastic Simulations

Due to the low levels of proteins involved when the input signal is activated (LacI repression being lifted and the subsequent lifting of the repression of TetR that induces lysis) we decided to create a stochastic model to create a more realistic simulation of the process. The model we chose was the “Tau Leap” model - as is it is quite computationally efficient and easy to integrate when a deterministic model has already been established. The method can be implemented by the following simple steps...


1. Create a Poisson random number generating script (we did this in C++) that accepts a number λ and outputs an integer distributed with a Poisson distribution around this number.

2. Choose a time, tau, which is large enough that all reactions have a possibility of taking place, but small enough that not too many reactions will take place.

3. Multiply each term in the deterministic equations by tau.

4. Assign the label λ to the new value of each term.

5. Input the value of λ into the Poisson random number generator

6. We have now replaced each term in the deterministic equations with an integer distributed around the value of the original term, so we simply add or subtract the integers from the old value of [X_t] to create [X_(t+tau)]

This process can be very fast computationally depending on the choice of tau. We ran several simulations to determine the dependence of the model and found that the choice was fairly arbitary when taken between ~0.01 seconds and ~1.5 seconds. However, the larger tau is, the quicker the simulation runs. We see the comparison between tau = 0.01 seconds, tau = 0.1 seconds and tau =1.5 seconds below.


Stochastic 3.jpg
Stochastic 1.jpg
Stochastic 2.jpg


The three simulations with different tau timesteps work almost identically. We note however that increasing tau above 2 seconds can lead to some very strange behaviour which we will not show here.


Stochastic vs. deterministic

Stochastic 4.jpg