Team:Bielefeld-CeBiTec/Model

Modelling
Any modeling project should be tempered by the morality of laziness.“ (Barnes et. al., 2010) This phrase illustrates that lab results can be predicted before actually working in the lab, saving precious time. Our project revolves around new discovered or theoretical biological systems like for example RNAi in prokaryotes or newly discovered copper transporters. Our project required four different modeling approaches:
- toxicity modeling
- reactor modeling
- siRNA modeling
- ferritin structure modeling

Toxicity modeling

The toxicity of copper ions on the cell is well characterized (Ning et al., 2015) but for important parts of this project like the crossflow reactor we needed to know the exact point of time where our cells will die to achieve highest possible yields of copper. The residence time should not exceed the rate of dying and cell lysis in the system. If cell lysis kicks in copper gets released back again into the substrate media and the yield minimizes. The modeling started with the copper uptake in our cells which contains the BioBrick BBa_K2638204, which expresses oprC under pAra​BAD (BBa_I0500)) control and induction at 1.0 % arabinose in. The toxicity is calculated for a single cell.
The first step was to calculate the rate of expression of oprC. Therefore the characterization of BBa_I0500) of iGEM Groenningen 2011 was used to calculate the expression speed. At 1.0 % arabinose induction a raise of fluorescence of approx. ΔF = 82,000 within of t = 36,000 s was measurable. The conversion from fluorescence units to concentration in mol/L was calculated as k = 2.5 ∙ 10-6 mol/L (Furtado and Henry, 2002) and the volume of the used capillaries was V = 3.14 ∙ 10-9 L The rate of protein expression with 1.0 % arabinose is:
(3.14 ∙ 10-9 L ∙ 2.5 ∙ 10-6 mol/L ∙ 87,500) / 36,000 s = 7.85 ∙ 10-14 mol/s (1)
According to (1) the increase of OprC with t0 = 0 can be described with (2) and (3):
dOprC/dt = 7.85 ∙ 10-14 mol/s (2)
OprCt = OprC0 + t ∙ 7.85 ∙ 10-14 mol/s (3) The next step is to determine the increase of the copper concentration inside the cell. OprC transports copper ions with a rate of vmax = 0.144 mol/s into the cell and has a substrate affinity of KM­ = 1.66 mM (Parmar et al., 2018). Due to the missing catalytic interchange number kcat the other definition of the Michaelis-Menten equation had to be used:
d(Cinside)/dt = -d(Coutside)/dt = vmax ∙ Cu2+ioutside/( Cu2+outside + KM) (4) After solving the differential equation (4) with the conditions t0 = 0 :
[Ct]- KM ∙ ln[Ct] = vmax ∙ t + [C0] - KM ∙ ln [C0] (5) Due to the fact that this only describes the kinetic of a single molecule of OprC the (3) and the Avogadro number NA = 6.022 ∙ 1023 mol-1 . That way the addition was possible of the both terms on the right side of (5) and the end equation results in:
[Ct]- KM ∙ ln[Ct] = vmax ∙ t2 ∙ NA ∙ 7.85 ∙ 10-14 mol/s + [C0] - KM ∙ ln [C0] (6) At this point the equation is not further to simplify. Because of this a short python script trying out multiple different number constellations had to be tried out.
kurve = []

for each in listCt[:end+1]:
for t in ts:
nOPRC = t*5*(10**(-29))
#print each
#print t

gleichung1 = vmax*t*nOPRC*6.022*(10**(23)) - C0 - math.log(C0)*KM
gleichung2 = -each - KM * math.log(each)
gleichung2small = gleichung2 - gleichung2*0.00001
gleichung2big = gleichung2 + gleichung2*0.00001
if gleichung2small <= gleichung1 and gleichung2big >= gleichung1:
kurve.append((each,t))
print each
print t

print kurve

with open ("Tupel_fuer_Kurve3.txt", "w") as out:

This way the toxic copper concentration ctox = 1 ∙ 10-5 mol/L (Ning, 2015) after inside the cell is approx. reached after the induction with 1.0 % arabinose.

siRNA promoter model

First the most fitting siRNAs for our project has to be calculated. A program will be written which returns a selection of compatible siRNAs for a gene you want to silence. Possible secondary structures should also be considered (Mathews, 1999) because they could prevent the silencing mechanism of siRNAs.
Figure 1: The siRNA with the compatible secondary structure binds to the mRNA and enables its digestion and blocks the translation of the sequence (A). The wrong secondary structure can’t bind and that way the mRNA can be translated and won’t be digested (B).
We assume that the rate of silencing by siRNAs depends in the first place on the promoter region in front of the RNAi gene. By gathering expression rates of the most popular promoters in the iGEM parts registry valuable information for modelling will be acquired. Furthermore additional factors like secondary structures, diffusion rates and degradation rates of RNA fragments. With that a model of the actual expression rate of proteins can be modeled with a given sequence that shall be silenced. The other way round this model should tell which is the best fitting promoter for a specific protein concentration. Combining both applications in one will result in a useful tool for the iGEM community.

Nanoparticle growth rates

Another big application we try to realise is the formation of nanoparticles inside the cell. For that a growing 3D model will be programmed with the Unity engine which illustrates the growth rate of different nanoparticle shapes. The growth rate depends on the existence of capping agents. The growth kinetic can be described like a chemical reaction kinetic (Phan, 2017).

References

Barnes, D. J., & Chu, D. (2010). Introduction to modeling for biosciences. Springer Science & Business Media.
Delihas, N., & Forst, S. (2001). MicF: an antisense RNA gene involved in response of Escherichia coli to global stress factors. Journal of molecular biology, 313(1), 1-12.
Mathews, D. H., Sabina, J., Zuker, M., & Turner, D. H. (1999). Expanded sequence dependence of thermodynamic parameters improves prediction of RNA secondary structure. Journal of molecular biology, 288(5), 911-940.
Phan, C. M., & Nguyen, H. M. (2017). Role of capping agent in wet synthesis of nanoparticles. The Journal of Physical Chemistry A, 121(17), 3213-3219.
Stach, J. E., & Good, L. (2011). Synthetic RNA silencing in bacteria–antimicrobial discovery and resistance breaking. Frontiers in microbiology, 2, 185.