Team:NTNU Trondheim/Journal Modeling

From 2011.igem.org

Revision as of 08:06, 28 July 2011 by Christpa (Talk | contribs)



Journal for Modeling Group

June
Mon Tue Wed Thu Fri Sat Sun
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30
July
Mon Tue Wed Thu Fri Sat Sun
1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
August
Mon Tue Wed Thu Fri Sat Sun
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31

You can find an overview of the modeling here.

Wednesday 22/6

Introductory lectures in systems biology was held by Marius Eidsaa. Different approaches were discussed and it was decided to work with two different models: Bayesian Networks and systems of Ordinary Differential Equations, and possibly extend it to Stochastic Differential Equations.

Friday 24/6

Dizzy was installed and we started too look at how to simulate Michealis Menten reactions.

Monday 27/6

We continued where we ended last week, with having lectures and to get aquinted with different software.

Thursday 30/6

A program which solves ordinary differential equations numerically using the Runge Kutta method of order 4 and 5 was made in Matlab. Using equation (*) and (**) (see the ) and having the level of ppGpp fixed the reponse of the system could be found.

The Bayesian model started to take form, and is ready to be implemented in C++.

Friday 1/7

PpGpp.png

The program was tested to see if it gave reasonable results. Minor errors were corrected and the first results were obtained, due to a lack of accurate parameters the units on the axis are arbitrary. Here is the source code:


tspan=[0;20]; % defines the start and stop
x=10.0; %the initial conentration of ppGpp
%the initial concentrations of LacI mRNA, LacI, mCherry mRNA and mCherry
y0=[20;20;0;0];
[T Y]=ode45(@F,tspan,y0);
plot(T,Y(:,2),T,Y(:,4),'r')
ppGpp=num2str(x);
title(['ppGpp=',ppGpp])
legend('LacI','mCherry','Location','East')
xlabel('t(a.u)')
ylabel('Concentration (a.u)')

Where F is a function defined by:

function Y = F(t,y)
Y=zeros(4,1);
x=10.0;
k1=[5e-4;5e-4];
k_prime=[20.0;20.0];
d1=[1;1];
n=[1;1];
k2=[20;20];
d2=[20;20];
Y(1)=k1(1)+k_prime(1)/(1+(y(5)+x)^n(1))-d1(1)*y(1);
Y(2)=k2(1)*y(1)-d2(1)*y(2);
Y(3)=k1(2)+k_prime(2)/(1+y(2)^n(2))-d1(2)*y(3);
Y(4)=k2(2)*y(3)-d2(2)*y(4);
end

Monday 4/7

MCherry.png

The program was modified to make it possible to have several values of ppGpp in one run making it possible to see the response to different values of ppGpp.

Friday 8/7

We was given an introductory lecture in Biology and Biotechnology by Gunnvor, too get an understanding of the work beeing done at the lab.

Monday 11/7

After a team meeting we was given a Master Thesis by Sigurd Johansen describing a toogle switch. We started to expand the ODE model to include more reactions than we have done so far. Both to be aware of possible limitations of the current model and to get a clearer understanding of the fundamental processes involved.

Thursday 15/7

We contacted the lab group to clarify the way ppGpp inhibits the rrnB promotor and was informed that it affects the RNAp and not the promotor in itself and can therefore also affect pLac.

Wednesday 20/7

We contacted Autodesk to explore the possibility of using Maya and the mMaya toolkit to visiualize the system. We also visited the lab to see how gelelectrophoresis was performed.

Thursday 21/7

We recieved mail from Autodesk, installed mMaya and explored the possibility of creating animations.

Friday 22/7

A simple animation of a green bacteria turning red was made in Maya.

Wednesday 27/7

Meeting with prof. Almaas.

We decided to drop the bayesian model see here, and focus on stochastic models.