Team:NTU-Singapore/Modeling

From 2008.igem.org

(Difference between revisions)
 
(13 intermediate revisions not shown)
Line 3: Line 3:
<div id="header">{{User:Greenbear/sandbox/header}}</div>
<div id="header">{{User:Greenbear/sandbox/header}}</div>
-
<div id="maincontent" style="margin-top:200px;">
+
<div id="maincontent" style="margin-top:100px;">
-
 
+
 +
[[Image:Blackboard.jpg|center|400px]]
=Introduction=
=Introduction=
 +
 +
The primary objective of this section is to assist us in developing an understanding of the dynamic behaviour of the systems that we would create in our iGEM project. A requirement for assessing the dynamic behaviour is a time-dependent mathematical model of the bio-chemical processes that take place.
 +
 +
 +
 +
-----------------------------------------------------------------------------------------------------------------
 +
Dictionary Definitions : Model
 +
 +
Model is derived from the Latin word ''modus'', which stands for ''measure''. As a noun it means, " a small representation of a planned or exiting object" (Webster's New World Dictionary)
 +
 +
"A mathematical or physical system, obeying certain specified conditions, whose behaviour is used to understand a physical, biological, or social system to which it is analogous in some way" (McGraw-Hill dictionary of Scientific and Technical Terms.)
 +
-----------------------------------------------------------------------------------------------------------------
 +
The use of models to describe synthetic biology has its merits. Synthetic biology investigates the use of different biological parts to put together and assemble devices that carry out specific functions. Good mathematical models to describe each part would greatly help not only in the characterization of a part but also facilitate the use of the part by other people when they choose to use the part within their devices or systems.
The use of models to describe synthetic biology has its merits. Synthetic biology investigates the use of different biological parts to put together and assemble devices that carry out specific functions. Good mathematical models to describe each part would greatly help not only in the characterization of a part but also facilitate the use of the part by other people when they choose to use the part within their devices or systems.
Simulations based on modeling can give a first insight on how the system would turn out and provide a rough guide of the system’s behaviour.
Simulations based on modeling can give a first insight on how the system would turn out and provide a rough guide of the system’s behaviour.
 +
We hope to use a control engineering approach in this project, and we hope that by understanding the transient behaviours of the systems can we better design our system to suit their purpose.
 +
 +
The models that are created and found in the subsequent sections can still be improved by comparing the modeling results against actual wet lab results. SIMULINK has proved to be an immensely useful tool for Deterministic modeling and solving ODEs. Cellware had its own limitations when dealing with Stochastic models. As the system got more complicated, the shorter the time span the program was able to simulate and produce useful results.
 +
 +
We had seen from our models that our AND gate system should have the shorter SupD gene attached to the Fe promoter. This was because in our assumptions, Fe ions would be ion lower concentration in the intestinal environment compared to Ai-2 and to have a similar response rate at the AND gate, the choice of AND gate inputs is critical.
 +
 +
We also realised that differing inputs of Lactose or Ai-2 would have an impact on the system via the models and this would be explored in greater detail in our wet lab experiments to see if the models are predicting the outcome correctly. <br>
 +
<br>
 +
<br>
 +
 +
''"All models are wrong; Some are useful"'' <br>
 +
'''George P. Box.''' <br>
 +
<br><br>
 +
<html>
 +
<script language=Javascript1.2>
 +
<!--
 +
 +
var tags_before_clock = "<b>It is now "
 +
var tags_middle_clock = "on"
 +
var tags_after_clock  = "</b>"
-
=System=
+
if(navigator.appName == "Netscape") {
-
The system can be viewed as two parts. The first part comprises of lactose induced production of colicin E7 and the immunity protein. The second part comprises of a detection mechanism that produces the lysis protein upon the detection of both Iron ions and Ai-2 ( Autoinducer 2).
+
document.write('<layer id="clock"></layer><br>');
 +
}
-
==Constructs of the system==
+
if (navigator.appVersion.indexOf("MSIE") != -1){
 +
document.write('<span id="clock"></span>');
 +
}
-
===Constitutive Protein Synthesis===
+
DaysofWeek = new Array()
-
{| align="center" border="1"
+
  DaysofWeek[0]="Sunday"
-
|[[Image:Protein production.JPG|300px|Constitutive transcription]]
+
  DaysofWeek[1]="Monday"
-
|[[Image:Protein_synthesis.jpg|650px|Constitutive transcription results]]
+
  DaysofWeek[2]="Tuesday"
-
|}
+
  DaysofWeek[3]="Wednesday"
 +
  DaysofWeek[4]="Thursday"
 +
  DaysofWeek[5]="Friday"
 +
  DaysofWeek[6]="Saturday"
-
The constitutive model allows us to understand how fast steady state can be achieved for basal transcription.
+
Months = new Array()
-
===AND Gate===
+
  Months[0]="January"
-
{| align="center" border="1"
+
  Months[1]="February"
-
|[[Image:Andgate.JPG|300px|AND gate]]
+
  Months[2]="March"
-
|[[Image:Andgate_results.jpg|650px|AND gate results]]
+
  Months[3]="April"
-
|}
+
  Months[4]="May"
 +
  Months[5]="June"
 +
  Months[6]="July"
 +
  Months[7]="August"
 +
  Months[8]="September"
 +
  Months[9]="October"
 +
  Months[10]="November"
 +
  Months[11]="December"
-
Addition of inputs was done at 250 minutes.
+
function upclock(){
 +
var dte = new Date();
 +
var hrs = dte.getHours();
 +
var min = dte.getMinutes();
 +
var sec = dte.getSeconds();
 +
var day = DaysofWeek[dte.getDay()]
 +
var date = dte.getDate()
 +
var month = Months[dte.getMonth()]
 +
var year = dte.getFullYear()
-
The AND gate model allows us to observe that even when there is no input, basal transcription still yields a certain amount of product. The difference is observed both inputs are applied and a sharp increase over the basal amount can be easily observed.
+
var col = ":";
 +
var spc = " ";
 +
var com = ",";
 +
var apm;
-
We can observe AND gate behaviour in this sense as it is impossible to have no protein production at all even in the most well-regulated system.
+
if (date == 1 || date == 21 || date == 31)
 +
  {ender = "<sup>st</sup>"}
 +
else
 +
if (date == 2 || date == 22)
 +
  {ender = "<sup>nd</sup>"}
 +
else
 +
if (date == 3 || date == 23)
 +
  {ender = "<sup>rd</sup>"}
-
===Complex Formation===
+
else
 +
  {ender = "<sup>th</sup>"}
-
[[Image:Complex.JPG|400px|Complex Formation]]<br>
+
if (12 < hrs) {
-
This is the Simulink Model Construct for Complex Formations. The model is tested by applying an input when time = 150 min.
+
apm="<font size='-1'>pm</font>";
-
[[Image:ComForm_Input.jpg|750px|Vary Input]]<br>
+
hrs-=12;
-
By increasing the input, we can see an increase in the amount of complex formed.
+
}
-
[[Image:ComForm_Rate.jpg|750px|Vary Rate]]<br>
+
-
By changing the rate of Complex formation, we can also see a change in the amount of complex formed.
+
-
Both results show that the model works fine and can be used in our modeling exercises later on.
+
else {
-
===Regulated Transcription===
+
apm="<font size='-1'>am</font>";
-
The model for regulated transcription is compared with the model used in Constitutive transcription. Input into both models was done when time = 150 min. This would allow us to see if there is a difference under two different conditions for the two models.
+
}
-
[[Image:R&C_150_1.jpg|600px|150 minutes]]<br>
+
-
[[Image:R&C_300_1.jpg|600px|300 minutes]]<br>
+
if (hrs == 0) hrs=12;
 +
if (hrs<=9) hrs="0"+hrs;
 +
if (min<=9) min="0"+min;
 +
if (sec<=9) sec="0"+sec;
-
[[Image:R&C_150_2.jpg|600px|150 minutes]]<br>
+
if(navigator.appName == "Netscape") {
 +
document.clock.document.write(tags_before_clock+hrs+col+min+col+sec+apm+spc+tags_middle_clock+spc+day+com+spc+date+ender+spc+month+com+spc+year+tags_after_clock);
 +
document.clock.document.close();
 +
}
-
[[Image:R&C_300_2.jpg|600px|300 minutes]]<br>
+
if (navigator.appVersion.indexOf("MSIE") != -1){
-
===Lactose Induced GFP production===
+
clock.innerHTML = tags_before_clock+hrs+col+min+col+sec+apm+spc+tags_middle_clock+spc+day+com+spc+date+ender+spc+month+com+spc+year+tags_after_clock;
-
[[Image:GFP_LACTOSE.jpg|850px| GFP Production Model]]
+
}
 +
}
 +
setInterval("upclock()",1000);
 +
//-->
 +
</script>
 +
</html>

Latest revision as of 05:42, 27 October 2008

Blackboard.jpg

Introduction

The primary objective of this section is to assist us in developing an understanding of the dynamic behaviour of the systems that we would create in our iGEM project. A requirement for assessing the dynamic behaviour is a time-dependent mathematical model of the bio-chemical processes that take place.



Dictionary Definitions : Model

Model is derived from the Latin word modus, which stands for measure. As a noun it means, " a small representation of a planned or exiting object" (Webster's New World Dictionary)

"A mathematical or physical system, obeying certain specified conditions, whose behaviour is used to understand a physical, biological, or social system to which it is analogous in some way" (McGraw-Hill dictionary of Scientific and Technical Terms.)


The use of models to describe synthetic biology has its merits. Synthetic biology investigates the use of different biological parts to put together and assemble devices that carry out specific functions. Good mathematical models to describe each part would greatly help not only in the characterization of a part but also facilitate the use of the part by other people when they choose to use the part within their devices or systems.

Simulations based on modeling can give a first insight on how the system would turn out and provide a rough guide of the system’s behaviour.

We hope to use a control engineering approach in this project, and we hope that by understanding the transient behaviours of the systems can we better design our system to suit their purpose.

The models that are created and found in the subsequent sections can still be improved by comparing the modeling results against actual wet lab results. SIMULINK has proved to be an immensely useful tool for Deterministic modeling and solving ODEs. Cellware had its own limitations when dealing with Stochastic models. As the system got more complicated, the shorter the time span the program was able to simulate and produce useful results.

We had seen from our models that our AND gate system should have the shorter SupD gene attached to the Fe promoter. This was because in our assumptions, Fe ions would be ion lower concentration in the intestinal environment compared to Ai-2 and to have a similar response rate at the AND gate, the choice of AND gate inputs is critical.

We also realised that differing inputs of Lactose or Ai-2 would have an impact on the system via the models and this would be explored in greater detail in our wet lab experiments to see if the models are predicting the outcome correctly.


"All models are wrong; Some are useful"
George P. Box.