Team:Carnegie Mellon/SensorModel
From 2014.igem.org
Acelentano (Talk | contribs) |
Acelentano (Talk | contribs) |
||
Line 101: | Line 101: | ||
<hr> | <hr> | ||
<h2> <center>The Outline</center></h2> | <h2> <center>The Outline</center></h2> | ||
- | <p align="left"> The model captures a total of 17 different interactions.</br></br> | + | <p align="left"><center> The model captures a total of 17 different interactions.</br></br> |
1. The rate at which mRNA T7-Intein is transcribed.</br> | 1. The rate at which mRNA T7-Intein is transcribed.</br> | ||
2. The rate at which mRNA T7-Intein is degraded.</br> | 2. The rate at which mRNA T7-Intein is degraded.</br> | ||
Line 118: | Line 118: | ||
15. The rate at which RFP is degraded.</br> | 15. The rate at which RFP is degraded.</br> | ||
16. The rate at which YFP is translated.</br> | 16. The rate at which YFP is translated.</br> | ||
- | 17. The rate at which YFP is degraded.</br></br> | + | 17. The rate at which YFP is degraded.</br></br></center></p> |
- | To run the model simply open the latest version of Rulebender, go to the simulation tab, provide the file path for the file you wish to run, and hit run. | + | <p> <center>To run the model simply open the latest version of Rulebender, go to the simulation tab, provide the file path for the file you wish to run, and hit run.</center> |
</p> | </p> | ||
<hr> | <hr> |
Revision as of 03:29, 13 October 2014
Purpose
The Outline
The Parameters
Parameter |
Value |
Reasoning |
Temp |
Variable (default value of 37 Celsius) |
The experiment can be carried out under various temperatures. Temperature affects the rate of intein splicing. |
ppt |
Variable (default value of 1000) |
Parts per trillion of estrogen in the water you are testing. |
rfp_copies |
15 copies/cell |
Number of rfp containing plasmids per cell. |
int_copies |
2984 copies/cell |
Number of intein containing plasmids per cell. |
estrogen_out |
ppt * 5.6e-02 nM |
Concentration of estrogen outside the cell. |
estrogen_in |
0 nM |
Concentration of estrogen inside the cell. Since e. coli is a prokaryote assume it is 0 nM. |
t7_intein |
0 nM |
Assume initial concentration of T7-Intein complex is 0 nM. |
t7_estrogen_u |
0 nM |
Assume initial concentration of T7-Intein complex bound to estrogen is 0 nM. |
t7_estrogen_s |
0 nM |
Assume initial concentration of spliced out Intein-Estrogen complex is 0 nM. |
t7_nc |
0 nM |
Assume initial concentration of T7 polymerase is 0 nM. |
plas_int |
int_copies * 1.0e-03 nM |
Concentration of T7-Intein plasmids. |
plas_rfp |
rfp_copies * 1.0e-03 nM |
Concentration of T7-RFP plasmids. |
t7_rfp |
0 nM |
Assume initial concentration of T7 bound to plasmid 2 is 0 nM. |
mrna_rfp |
0 nM |
Assume initial concentration of mRNA RFP is 0 nM. |
prot_rfp |
0 nM |
Assume initial concentration of protein RFP is 0 nM. |
mrna_int |
0 nM |
Assume initial concentration of mRNA intein is 0 nM. |
prot_yfp |
0 nM |
Assume initial concentration of protein YFP is 0 nM. |
k_e |
1.7e-02 s-1 |
Rate at which estrogen diffuses through membrane. The diffusion coefficient of a steroid hormone in an aqueous phase = 10-13 m2/s and the surface area of a bacteria is 6 * 10-12 m2. Thus (10-13 m2/s) / (6 * 10 -12 m2) = 1.7e-02 s-1 |
k_e_t7_on |
1.3e-03 nM-1s-1 |
Rate at which estrogen binds to the intein. The intein is the human estrogen receptor, so the value is from the literature. |
k_e_t7_off |
1.2e-03 s-1 |
Rate at which estrogen dissociates from the intein. Based on literature value of human estrogen receptor. |
k_splice |
7.1e-04 s-1 |
Rate at which intein splices out. Based on literature values of other inteins’ splicing kinetics. |
k_t7_rfp_on |
3.3e-01 nM-1s-1 |
Rate at which T7 binds to the RFP plasmid. Value obtained from literature. |
k_t7_rfp_off |
1.0e-01 s-1 |
Rate at which T7 dissociates from the RFP plasmid. Value obtained from literature. |
k_rna_rfp |
8.8e-01 nM s-1 |
Rate at which mRNA is synthesized from RFP plasmid. From iGEM team PKU ’09. |
k_rna_deg_rfp |
4.3e-03 s-1 |
Rate at which mRNA RFP degrades. From iGEM team PKU ’09. |
k_prot_rfp |
9.0e03 s-1 |
Rate at which RFP protein is made. From iGEM team PKU ’09. |
k_prot_deg_rfp |
8.3e-04 s-1 |
Rate at which RFP protein degrades. From iGEM team PKU ’09. |
k_rna_int |
2.6e-02 nM s-1 |
Rate at which mRNA is synthesized from T7-Intein plasmid. From iGEM team PKU ’09. |
k_rna_deg_int |
4.3e-03 s-1 |
Rate at which mRNA of T7-Intein degrades. From iGEM team PKU ’09. |
k_prot_int |
2.2e-03 s-1 |
Rate at which T7-Intein is made from mRNA. From iGEM team PKU ’09. |
k_prot_deg_int |
9.7e-04 |
Rate at which T7 polymerase is degraded. From iGEM team PKU ’09. |
Insights
Insight: In order to accurately describe the behavior of certain interactions in the cell, it is necessary to use more than just simple rate constants. New functions which modify the rate constant based on cellular conditions must be introduced. The rate at which mRNA RFP is synthesized is the product of the rate constant and the number of T7 polymerases bound to the RFP plasmid. Thus: mRNA_RFP_synth() = k_rna_rfp * T7_RFP The rate at which RFP protein is produced increases proportionally with the concentration of mRNA RFP present and decreases proportionally with the square root of the concentration of RFP currently present in the cell. Essentially the cell will make less RFP if there is already a lot of RFP currently present. Thus: protein_RFP_synth() = k_prot_rfp * mRNA_RFP * sqrt(1/(1 + prot_RFP)) The rate at which estrogen enters and exits the cell also depends on the concentration gradient of estrogen. If the concentration of estrogen outside the cell is much greater than the concentration of estrogen inside the cell, then estrogen will enter the cell at a much faster rate than if the concentration gradient is not as large. Thus: e_in() = k_e * (E_out)/(E_out + E_in) e_out() = k_e * (E_in)/(E_out + E_in) The rate at which the T7-Intein complex is produced increases proportionally with the concentration of mRNA T7-Intein present and decreases proportionally with the square root of the concentration of T7-Intein complex currently present in the cell. Essentially the cell will make less T7-Intein complex if there is already a lot of T7-Intein currently present. Thus: protein_INT_synth() = k_prot_int * mRNA_INT * sqrt(1/(1 + T7_unbound)) The rate at which YFP is produced increases proportionally with the concentration of mRNA T7-Intein present (as the YFP sequence is located on the same mRNA) and decreases proportionally with the square root of the concentration of YFP currently present in the cell. Essentially the cell will make less YFP if there is already a lot of YFP currently present. Thus: protein_INT_synth() = k_prot_int * mRNA_INT * sqrt(1/(1 + T7_unbound)) The rate at which the intein splices out is dependent on the temperature of environment surrounding the cell. Since the cell is an E. coli cell, the optimal temperature for the surrounding environment is 37 degrees Celsius. This was confirmed in the wet-lab. Thus: int_Splice() = k_splice * (1/(1 + sqrt(abs(37 – Temp)))
The units of concentration in all of the graphs are in nM. The units of time in all of the graphs are in seconds. According to the literature enhanced GFP can be detected fairly reasonably at concentrations greater than 1 µm. Thus we can assume that regular RFP will be detected at concentrations of around 100 µm. All of the simulations were carried out at 37 degrees Celsius for the optimal results. The sensor should detect estrogen within a couple of hours, thus the simulation ends in a couple of hours.
protein_INT_synth() = k_prot_int * mRNA_INT * sqrt(1/(1 + T7_unbound)) The rate at which YFP is produced increases proportionally with the concentration of mRNA T7-Intein present (as the YFP sequence is located on the same mRNA) and decreases proportionally with the square root of the concentration of YFP currently present in the cell. Essentially the cell will make less YFP if there is already a lot of YFP currently present. Thus: protein_INT_synth() = k_prot_int * mRNA_INT * sqrt(1/(1 + T7_unbound)) The rate at which the intein splices out is dependent on the temperature of environment surrounding the cell. Since the cell is an E. coli cell, the optimal temperature for the surrounding environment is 37 degrees Celsius. This was confirmed in the wet-lab. Thus: int_Splice() = k_splice * (1/(1 + sqrt(abs(37 – Temp)))
Results
The units of concentration in all of the graphs are in nM. The units of time in all of the graphs are in seconds. According to the literature enhanced GFP can be detected fairly reasonably at concentrations greater than 1 µm. Thus we can assume that regular RFP will be detected at concentrations of around 100 µm. All of the simulations were carried out at 37 degrees Celsius for the optimal results. The sensor should detect estrogen within a couple of hours, thus the simulation ends in a couple of hours.INSERT GRAPHS