- All molecules, including proteins, protein complexes and small molecules are uniformly distributed in cell bodies.
- The diffusion rate constant $k16$ of AHL is determined only by the AHL gradient between cytoplasm (denoted as $[AHL_i]$) and extracellular matrix (denoted as $[AHL_e]$).
- Initial $[AHL_i] = 0,$ and $[AHL_e] = \mbox{constant.}$
- LuxR protein ($[LuxR]$) is produced either by housekeeping gene which is assumed to have a constant transcription rate $k1,$ or by positive feedback system discussed in 7. LuxR degrades with constant $k12.$
- AHL binds to LuxR protein, thus forming complex $[C]$ at rate $k5.$ The complex degrades into AHL and LuxR at rate $k13.$
- The aforementioned complex dimerize into dimer $[D]$ at rate $k6,$ and the dimer dissociates and forms two complex at rate $k14.$
- The complex binds to inducible promoter of LuxR and GFP ($[GFP]$), which has three characteristics:
- The promoter complies to Hill's equation with cooperativity 1.
- Maximum transcription rate of this promoter is $k2.$
- Hill's dissociation constant is $k3.$
- The degradation rate of GFP is $k18.$
- Translation and degradation rate of mRNA is $k4$ and $k11,$ respectively.
- Concentration of every species of molecules is adjusted for cell growth (dilution): \[\dfrac{dx}{dt} = - \dfrac{k8*x5}{k9+x5}*x\]
- Parameters concerning bacterial growth:
- $k7$ is growth yield of bacteria
- $k8$ is maximum growth rate
- $k9$ is half-saturation constant
- $k10$ is bacterial death fraction per time
- [S] is nutrient in medium
- [N] is cell density
\[\dfrac{d[N]}{dt} = [N]\cdot\dfrac{k8*[S]}{k9+[S]} - k10*[N]\]
Implementation:
We implement the model in MATLAB. Users can simulate this deterministic model many times with different rate constant (by specifying the standard derivation of constants).
Components of unknown variables:
x1 : [RHLR]
x2 : [Complex (AHL-RHLR)]
x3 : [dimer_of_complex]
x4 : [AHL_intracellular]
x5 : [S] (Nutrient in medium)
x6 : [N] (cell density)
x7 : [GFP]
System of ODEs:
\[\dfrac{d[LuxR]}{dt} = (k4/k11)*(k1+(k2*x3/(k3+x3)))- k5*x1*x4 + k13*x2 - k12*x1 - (k8*x5/(k9+x5))*x1\]
\[\dfrac{d[Complex]}{dt} = k5*x1*x4 - k13*x2 - 2*k6*(x2^2) + 2*k14*x3 - (k8*x5/(k9+x5))*x2\]
\[\dfrac{d[dimer]}{dt} = k6*(x2^2)- k14*x3- (k8*x5/(k9+x5))*x3\]
\[\dfrac{d[AHL_i]}{dt} = k16*(AHLe - x4) + k13*x2- k5*x1*x4 - k15*x4 - (k8*x5/(k9+x5))*x4\]
\[\dfrac{d[Nutrient]}{dt} = (-1/k7)*x6*(k8*x5/(k9+x5))\]
\[\dfrac{d[Cell density]}{dt} = x6*((k8*x5/(k9+x5)) - k10)\]
\[\dfrac{d[GFP]}{dt} = (k17/k11)*((k2*x3/(k3+x3)))- k18*x7 - (k8*x5/(k9+x5))*x7\]
沒有留言:
張貼留言