Difference between revisions of "Team:Jilin China/Model/population model"

Line 4: Line 4:
 
.h1_content ul{
 
.h1_content ul{
 
list-style-type:none;
 
list-style-type:none;
list-style-image:"https://static.igem.org/mediawiki/2017/3/3f/T--Jilin_China--_hover1.png"
+
list-style-image:"https://static.igem.org/mediawiki/2017/3/3f/T--Jilin_China--_hover1.png";
 
padding:0px 20px;
 
padding:0px 20px;
 
font-size: 13px;
 
font-size: 13px;
Line 143: Line 143:
 
             scrollThreshold:0.5,
 
             scrollThreshold:0.5,
 
             scrollSpeed:700,
 
             scrollSpeed:700,
             scrollTopBorder:400,
+
             scrollTopBorder:50,
 
             easing: 'swing',
 
             easing: 'swing',
 
             delayDetection:200,
 
             delayDetection:200,
Line 275: Line 275:
  
 
var directoryNav = new DirectoryNav($(".h1_title,.h2_title"),{
 
var directoryNav = new DirectoryNav($(".h1_title,.h2_title"),{
         scrollTopBorder:400
+
         scrollTopBorder:50
 
     });
 
     });
 
});
 
});

Revision as of 19:04, 25 October 2017

Population Model
Overview

Since environmental factors (such as nutrients, temperature, etc.) and the toxin\anti-toxin system would both affect the growth of E.coli. Our first aim was to estimate how toxin system decreases the growing speed of the engineered bacteria, for that, firstly we set up a population model free from toxins (free-growth model), which was supposed to help cancel the environmental factors. Then, we developed another model (inhibited-growth model) to fit the growth curve of E.coli in the same environment but affected by the CbtA protein (in another word, the promoter for the toxin gene were activated). Comparing the two models, we could finally know how the toxin system itself (or, we can say promoter activity for the toxin gene) affected the growth of E.coli – which could also help us to select the appropriate strength of promoters (we hoped to choose a promoter which would lead to a suitable level for CbtA expression – not too little to hold back the growth of E.coli, nor too much to kill all the engineered bacteria). For the recovering process (the anti-toxin system), since the anti-toxin protein (YeeU) will neutralize the effect of CbtA, the growth of the engineered bacteria would return to normal (free from toxin) in ‘some level’ – this should be described as a weighted average of the two models – the free-growth model and the inhibited-growth model, and the certain weight show its ‘level’. However, during our experiments, we found that the inducer for the anti-toxin gene (IPTG) could also hold back the growth of E.coli, so we set up another model (IPTG-inhibited-growth model) to cancel the effect of IPTG and the IPTG induced recovering process was described as a weighted average of the IPTG-inhibited-growth model and the inhibited-growth model, and the weights are related with the promoter activity for the anti-toxin gene. Noticing that the inducer for the anti-toxin protein used in our final project was DmpR-phenol complex but not IPTG, so the growth model of our fully-functional engineered bacteria was still the average of the free-growth model and the inhibited-growth model.

Free-growth Model
Assumptions

To generate a classical Logistic growing model for our E.coli free from the effect of toxins, we have to involve the following assumptions:

  • Environment capacity for our engineered bacteria is a constant through out the whole experiment.
  • If the plasmid transformed into the bacteria doesn't transcribe, the bacteria could be seemed the same as the bacteria without plasmid.

Mathematical Modelling
Parameters
VariableExplanation
$N$current population of E.coli, counted in OD600
$t$time
ConstantExplanation
$N_0$initial population of E.coli, counted in OD600
$N_{ec}$environment capacity for E.coli, fixed under specific environment
$k$the speed coefficient, fixed under specific environment

The bigger the population is, the faster the population will grow. The more the capacity is saturated, the slower the growth will be. These simple regulations can be described with the following Logistic equation:

$\dfrac{\mathrm{d}N}{\mathrm{d}t}=kN\dfrac{N_{ec}-N}{N_{ec}}$

with initial point: t = 0, N = N0, the solution to this ordinary diffrential equation is:

$N=\dfrac{N_{ec}e^{kt}\frac{N_0}{N_{ec}-N_0}}{1+e^{kt}\frac{N_0}{N_{ec}-N_0}}$

Model fitting
Experimental Data

With the non-linear least squares fitting method, the fitting results are listed here.

Inhibited-growth Model
Assumptions

Based on the free-growth model, we set up this model with the following assumptions:

  • The inhibition from the toxin protein can only affect the growth of E.coli in two aspects: 1.slow down the growth speed, 2.kill E.coli
  • With a fixed toxin gene promoter activity, the slowing-down effect can be described as " v'=p1v " (while v is the original growth speed and p1 represents the degree of the slowing down effect).
  • With a fixed toxin gene promoter activity, the killing effect can be described as " v''=v'-p2N " (while N is the current population and p2 represents the dying speed of E.coli)

Mathematical Modelling
Parameters