Top
Introduction
Mathematical modeling suffices to –
- Provide an objective view towards complex & apparently diverse systems. This objectivity is instrumental for efforts motivated by the idea of generalization.
- Provide an ability to predict the behavior of a system i.e. to predict the properties of a state of the system given the information for some other state.
Simulations–
- Give us a way in which the numbers mimic biological/chemical ‘characters’ & equations derive their behavior.
- Help us in visualizing the results of equations that are analytically unsolvable.
Here, with the instruments of ODEs, two biological circuits were modeled (and solved!)
- Variable-link Oscillator - Hijack Module
- Killer gene Circuit – Termination Module
Software & Methods
For solving the ODE (Ordinary Differential Equations) – Python 2.7.10 was used.
We have used the Anaconda (Python distribution) for running all our scripts.
Initially we wrote our own implementation of Euler’s method of integration to solve all the systems of equations.
But after learning about scipy.integrate module we have been using Scipy's odeint function for integrating the ODEs
Scipy [version 0.15.1]
Modelling
Variable-link Oscillator
Description of oscillator
This is a synthetic genetic oscillator, operative in bacteria, first described by Hasty et. Al (ref. 1). The regulation here is based on protein- protease interaction between cI (protein responsible for maintaining lysogenous state in acteria infected with lambda phage) & rcsA (bacterial protease specific to cI). The cI protein acts as an auto-activator & an activator for production of rcsA while rcsA acts for degradation of cI, after a certain concentration of cI has been achieved.
Hence, the concentration of cI exhibits oscillations. The behavior of these oscillations can be enquired when a visible reporter (like GFP) is incorporated in the network.
The basic requirement of the network is that all the genes- the cI gene, the rcsA gene & the gfp gene, should be present under the activity of same promoter – PRM (the natural promoter of cI in lambda phage).
The original model
The model for this oscillator is formulated in the form of system of coupled ODEs.
Introduction to variables –
x = [CI]
y = [RCSA]
g = [GFP]
mx = copy number of plasmid containing cI gene
my = copy number of plasmid containing rcsA gene
γx = rate constant for natural degradation of cI
γy = rate constant for natural degradation of rcsA
γg = rate constant for natural degradation of gfp
γxy = rate constant for natural degradation of cI due to protease activity
γgy = rate constant depicting no depletion in production of gfp as a consequence of protease activity on activator - cI
f(x) = function determining production of gene under promoter PRM
α = Factor depicting enhancement in transcription
σ1 = Coefficient for binding of cI to OR2 relative to OR1
σ2 = Coefficient for binding of cI to OR3 relative to OR1
PRM promoter has three operator sites- OR1, OR2, OR3 to which CI-dimer binds sequentially. Binding of CI to OR2 enhances transcription & that to OR3 represses transcription.
Assumptions of Model –
- The cI gene along with reporter (gfp) gene is present on one plasmid, say – x, with plasmid copy number – mx, while the rcsA gene is present on another plasmid, say – y, with plasmid copy number – my . The oscillator is actualized as a two-plasmid system.
- (Major assumption)
mx > my
This assumption is responsible for maintaining the oscillatory nature of the system.
- Reactions like transcription & normal degradation are slow & irreversible. Degradation is essentially due to growth.
Our work
Imitation
Reproduction of result- to be able to show oscillations (in x & y; here g is not considered separately since its behavior would be similar to that of x) through simulation has been possible by employing specific parametric values referred from literature (ref.1, ref.2).
Conditions for simulation:
Table 1.1
Parameter or a constant
|
Value
|
x-initial conc. |
4 nM
|
y-initial conc. |
200 nM
|
mx |
10
|
my |
1
|
γx |
0.1
|
γy |
0.01
|
γxy |
0.1
|
α |
11
|
σ1 |
2
|
σ2 |
0.08
|
Oscillations (according to model equations) of period of about 1o minutes were obtained on simulating the specified conditions.
Investigation
Plasmid copy number is an evident parameter when tunability of the oscillator is considered. Keeping the values of all other variables constant, simulations were run for exploring those values of mx & my, for which system exhibits oscillatory regime.
The simulation leads to conclusion that oscillations are possible for a range of plasmid copy number ratio (mx : my) values as marked in the legend of the plot. Oscillations (of varying amplitudes & periods) occur between mx : my = 4:1 & mx : my = 10:1.
Innovation
Employing this oscillator in our genetic device is possible only at the cost of violating the major assumption of this model- mx > my . This is because our entire genetic device needs to be packaged in single plasmid vector & hence, two plasmid based oscillator is not feasible.
This problem led to development of alternative strategies to create a single plasmid based oscillator. The basic idea behind these strategies is to exploit other parameters like- RBS efficiency, number of gene sets etc. to achieve the same numerical ratio for which oscillatory regime exists.
Alternative strategies :
- Multiple promoter sites (i.e. gene sets)-
- Disadvantages of this alternative :
- Not “effective” as plasmid copy no. ratio
- Possible problems arising due to promoter titration
- Requirement of larger plasmids
- Different RBS Efficiency ratios-
- Advantages of this alternative :
- Present as bio-bricks (measurements performed)
- Efficiency ratios comparable in magnitude to copy no. ratio (from 4:1 to 10:1)
-
Combinatorial way-
(no. of gene sets) * (RBS efficiency ratio) ≅ plasmid copy no.
Here, our model is an oscillator that exploits the difference in the translational efficiencies of different ribosome binding sites (RBSs).Our model makes use of existing, well characterized RBSs (present as bio-bricks) whose efficiencies are known.
Introduction to new variables :
ex = RBS efficiency of RBS associated with cI gene
ey = RBS efficiency of RBS associated with rcsA gene
m’ = plasmid copy number of the ‘single’ plasmid (containing entire oscillator)
Assumptions of our model :
The simulation run :
Conditions for simulation
Table 1.3
Parameter or a constant
|
Value
|
ex |
0.6
|
ey |
0.07
|
m'(=mx' =my' ) |
10
|
Keeping all other parameters at same values as in Table 1.1
Hence, ex : ey = 0.6 : 0.07 = 8.75 : 1 (which is between 4:1 & 10:1 numeric ratio values)
The simulation run for specific RBS efficiency ratio, keeping all other parameters consistent with the first simulation, resulted in oscillations of period- 10 minutes. Hence, efficient oscillations are shown by our model with respect to period (which is crucial to our genetic device).
Concluding Remarks
- Successful in reproducing the published results for variable-link oscillator.
- Successful in exploring the parametric range for which oscillatory regime exists.
- Successful in building a general strategy for designing a single plasmid based oscillator.
- Successful in showing oscillations of a single plasmid based oscillator harnessing different RBS efficiencies.
References
1. Designer Gene Networks : Towards Fundamental Cellular Control -- J. Hasty & et.al.
2. Comparative analysis of synthetic genetic oscillators -- O. Purcell & et.al.
Quorum Sensing Termination Circuit
Introduction
The termination module to self destruct cells or cease further replication and thus to prevent uncontrolled growth is is necessity of our genetic device, considering the bio-safety of the whole project.
Background
Quorum sensing is well known in the form of luxI/luxR system which was found in Vibrio fischeri a marine bacterium. The bacterium is known to release signaling molecule AHL (acyl-homoserine lactone) which diffuses across the cell membrane. As cell density increases AHL concentration increases in the extracellular medium and inside the cells. At high enough concentrations it binds to and activates LuxR, a transcriptional regulator which then induces the LuxI promoter causing the expression of fluorescent protein.
The basic termination model has been described and demonstrated earlier based on lux R-lux I system (ref.1). The system comprises of sender and receiver parts wherein, promoter of sender part is IPTG inducible. When the promoter is switched on.
- luxI production causes release of AHL .
- The AHL diffuses across cell membranes to nearby cells and binds to luxR.
- Activated luxR induces the plux I releasing the Ccdb toxin (E) that causes cell death.
Model
The first approach was to have the termination module switched on from the start, sending the AHL signals.
In this the model previously proposed (You et. al. 2004 ) was successfully reproduced(Approach 1).
We then further modified it for our problem as discussed in Approach 2 and Approach 3.
Approach 1: Constitutive Expression
Our system is identical to the one already reported with the exception that promoter is assumed to be constitutive instead of IPTG inducible
In this approach we thereby also reproduce the results of the previously proposed model using simulations in python as follows.
The equations describing the model are given as:
Equations from original model :
[[File:|none|200px|Equations]]
==
Mathematical modelling suffices to –
Provide an objective view towards complex & apparently diverse systems. This objectivity is instrumental for efforts motivated by the idea of generalization.
Provide an ability to predict the behavior of a system i.e. to predict the properties of a state of the system given the information for some other state.
Simulations –
Give us a way in which the numbers mimic biological/chemical ‘characters’ & equations derive their behavior.
Help us in visualizing the results of equations that are analytically unsolvable.
Variable link oscillator
Description of original model from reference[1]
This is a quantitative model describing the regulation of the PRM operator region of λ phage. The model envisions that the system is a DNA plasmid consisting of the promoter region and cI gene.
The promoter region contains the three operator sites known as OR1, OR2, and OR3.
The gene cI expresses repressor (CI), which in turn dimerizes and binds to the DNA as a transcription factor. This binding can take place at one of the three binding sites OR1, OR2, or OR3. The binding affinities are such that, typically, binding proceeds sequentially; the dimer first binds to the OR1 site, then OR2, and lastly OR3. Positive feedback arises due to the fact that downstream transcription is enhanced by binding at OR2, while binding at OR3 represses transcription, effectively turning off production and thereby constituting a negative feedback loop.
The chemical reactions describing the network are naturally divided into two categories – fast and slow. The fast reactions have rate constants of order seconds, and are therefore assumed to be in equilibrium with respect to the slow reactions, which are described by rates of order minutes. If we let X, X2, and D denote the repressor, repressor dimer, and DNA promoter site, respectively, then we may write the equilibrium reactions
where Di denotes dimer binding to the ORi site, and the Ki = ki/k−i are equilibrium constants. We let K3 = σ1K2 and K4 = σ2K2, so that σ1 and σ2 represent binding strengths relative to the dimer-OR1 strength.
The slow irreversible reactions are transcription and degradation. If no repressor is bound to the operator region, or if a single repressor dimer is bound to OR1, transcription proceeds at a normal unenhanced rate. If, however, a repressor dimer is bound to OR2, the binding affinity of RNA polymerase to the promoter region is enhanced, leading to an amplification of transcription. Degradation is essentially due to cell growth. We write the reactions governing these processes as
where P denotes the concentration of RNA polymerase, n is the number of repressor proteins per mRNA transcript, and α > 1 is the degree to which transcription is enhanced by dimer occupation of OR2.
Defining concentrations as our dynamical variables, x = [X], x2 = [X2], d0 = [D], d1 = [D1], d2 = [D2D1], and d3 = [D3D2D1], one can write a rate equation describing the evolution of the concentration of repressor,
where they assume that the concentration of RNA polymerase p0 remains constant during time.
They next eliminate x2 and the di . The model utilizes the fact that the reactions in Eq. (1) are fast compared to expression and degradation, and write algebraic expressions
Further, the total concentration of DNA promoter sites dT is constant, so that
where
m is the copy number for the plasmid, i.e., the number of plasmids per cell.
They eliminate two of the parameters by rescaling the repressor concentration x and time.
Now, they define the dimensionless variables x’ = x (K1K2)1/2 and t’ = t(ktp0dT n(K1K2)1/2). Upon substitution,
The parameter γx is directly proportional to the protein degradation rate, and in the construction of artificial networks, it can be utilized as a tunable parameter. The integer parameter m represents the number of plasmids per cell. While this parameter is not accessible during an experiment, it is possible to design a plasmid with a given copy number, with typical values in the range of 1-100.
The hysteretic effect can be employed to induce oscillations, provided we can couple the network to a slow subsystem that effectively drives the parameter γx. This can be done by inserting a repressor protease under the control of a separate PRM promoter region. On one plasmid, we have the network of the repressor protein CI, which is under the control of the promoter PRM , stimulates its own production at low concentrations and shuts off the promoter at high concentrations. On a second plasmid, again utilize the PRM promoter region, but here they insert the gene encoding the protein RcsA. The crucial interaction is between RcsA and CI; RcsA is a protease for repressor, effectively inactivating its ability to control the PRM promoter region.
First, both RcsA and repressor are under the control of the same promoter, so that the functional form of the production term f(x) will be the same for both proteins. Second, they envision the network as being constructed from two plasmids – one for repressor and one for RcsA, and that we have control over the number of plasmids per cell (copy number) of each type. Lastly, the interaction of the RcsA and repressor proteins leads to the degradation of repressor. Putting these facts together, and letting y denote the concentration of RcsA, we have
We simulated this model, in python using following set of parametric values –
to get –
[C1] = 7.7x + 3.0x2
We then ‘played around’ with initial conditions –
Inference – Initial conditions do not affect the oscillatory period, when plasmid copy number ratio is kept constant.
The next step was to check the effect of mx : my ratio on the oscillatory system –
Here the ratio is kept constant – 10:1 throughout, while the values are being changed.
Inference - No change in the oscillatory period. However, the concentration amplitudes at which the system oscillates exhibit differences.
We then simulated the model for a range of values for mx : my ratio –
Here the initial conditions are constant for all values of mx : my ratio.
Inference – For the given parametric values (referred from the paper), the oscillatory regime is possible only for a range of plasmid copy number ratios sarting at 4:1 and giving best results (oscillations of period reuired by us) at close to 10:1.
According to our project idea, it is crucial for the entire device to be packaged in one plasmid. However, this would mean –
mx = my
We came up with a no. of possible mitigation strategies / alternetives for this –
1.Multiple promoter sites (i.e. gene sets)-
Concerns :
Not “effective” as plasmid copy no. ratio
Issue of promoter titration
Larger plasmids required
2. Different RBS Efficiency ratios-
Advantages :
Present as bio-bricks (measurements performed)
Efficiency ratios comparable in magnitude to copy no. ratio (from 4:1 to 10:1)
Bio-brick part Efficiency
BBa_B0034 1.0 (Reference)
BBa_B0030 0.6
BBa_B0032 0.3
BBa_B0031 0.07
BBa_B0033 0.01
We now simulated this ‘situation’, wherein the plasmid copy number is the same for genes, but the RBS for them have different efficiencies. These RBS efficiencies are considered, if not equal, proportional to translational efficiency.
We scale (multiply equations with appropriate factors) the equations of our oscillatory system such that –
Ratio of RBS efficiencies = Plasmid copy number ratio for which oscillations are observed.
RBS Efficiency Ratio
0.6 : 0.07 = 8.75
Further work –
1. To construct a model that includes translational & transcriptional considerations explicitly.
2. Attempt a combinatorial way -
(no. of gene sets) * (RBS efficiency ratio) ≅ plasmid copy no.
Verify the linearity!
Terminator (Killer Gene) Model –
Description of model (from the reference)
The paper describes a circuit that programmes a bacterial population to maintain a cell density that is lower than the limits imposed by the environment (for example, by nutrient supply). This is achieved by a quorum sensing module attached to a killer gene.
The LuxI protein of the well-characterized LuxI/LuxR system from the marine bacterium Vibrio fischeri synthesizes a small, diffusible acyl-homoserine lactone (AHL) signalling molecule. The AHL accumulates in the experimental medium and inside the cells as the cell density increases. At sufficiently high concentrations, it binds and activates the LuxR transcriptional regulator, which in turn induces the expression of a killer gene (E) under the control of a luxI promoter (pluxI). Sufficiently high levels of the killer protein (CcdB) cause cell death. The CcdB portion retains the toxicity of native CcdB, which kills susceptible cells by poisoning the DNA gyrase complex.
A simple mathematical model is described in the reference that predicts that the system would reach a stable cell density for all realistic parameter values, although it might go through damped oscillations while approaching the steady state.
They model the major kinetic events dictating the circuit function, including cell growth and death. Assumptions of the model –
(1) without the circuit, changes in viable cell density follow logistic kinetics with an intrinsic per capita growth rate of k and a carrying capacity of Nm
(2) for circuit-regulated growth, the cell death rate is proportional to the intracellular concentration of the killer protein (E) with a rate constant of d (h)
(3) the production rate of E is proportional to AHL concentration (A, assumed to be the same inside and outside the cells) with a rate constant of kE
(4) AHL production rate is proportional to N with a rate constant of nA
(5) degradation of the killer protein and AHL follows first-order kinetics with rate constants of dE and dA
Analytical solution for this model :
Our work :
We simulated this model in Python, for given values of parameters & constants –
(These values were referred from the paper)
Here,
NC = population density when QST circuit is ‘OFF’
N = population density when QST circuit is ‘ON’
We also checked the behavior of A & E with respect to N.
We then came up with an idea, where we could delay the onset of terminator.
This is crucial for our device idea, as the terminator should kick in only after the system has been hijacked to extent that it produces pigment enough to be recognized visibly.
# add schematic
Hence, we coupled our detection module with the terminator module. Depending on the whether the concentration of pigment has crossed a threshold value, the killer gene is activated.
Pigment production gene under a constitutive promoter, accumulates continuously. When sufficient (visible to eye, here assumed to be 1/10 conc. of that of lycopene in tomato) amount of pigment is accumulated, the sender (AHL producing part of the circuit) of the terminator is induced, which then in turn induces the killer gene in the receiver.
This pigment- sender induction can either be manual (as this model now helps us to know the time period in which ‘sufficient’ amount of pigment accumulates) or through a density counter associated with the pigment production gene.
N= QST on
Nc=QST off
Nd=Delayed initiation
References :
1) Designer gene networks towards funamnetal cellular control, Hasty et al, Chaos (2002)
2) Programmed population control by cell-cell communication and regulated killing, You et al, Nature (2004)