Team:ZJU-China/models.htm

From 2012.igem.org

(Difference between revisions)
Line 312: Line 312:
<div class="acc_container" style="display: none; ">
<div class="acc_container" style="display: none; ">
<!--Content Goes Here-->
<!--Content Goes Here-->
-
<div style="height:800px;overflow:scroll;">
+
<div class="projectNav">
-
<h2>Introduction</h2>
+
-
<p align="justify">&nbsp;</p>
+
<p align="justify">As explained before, the RNA scaffold brings the two enzymes (MS2 and PP7) closer, which improve the reaction rate of pathways. It seems magical that the reaction rate would be improved when two enzymes are close to each other. Then some questions are emerging. How faster it would be when two enzymes are in a RNA scaffold? What are the factors that will affect the efficiency of pathways? Those are what we want to discuss below. In this section, we establish a model by simplifying the molecular motion and simulating the reaction using Matlab programming.</p>
<p align="justify">As explained before, the RNA scaffold brings the two enzymes (MS2 and PP7) closer, which improve the reaction rate of pathways. It seems magical that the reaction rate would be improved when two enzymes are close to each other. Then some questions are emerging. How faster it would be when two enzymes are in a RNA scaffold? What are the factors that will affect the efficiency of pathways? Those are what we want to discuss below. In this section, we establish a model by simplifying the molecular motion and simulating the reaction using Matlab programming.</p>
<p align="justify">&nbsp;</p>
<p align="justify">&nbsp;</p>
-
<h2>Simplification</h2>
 
-
<p align="justify">&nbsp;</p>
 
-
<p align="justify">We simplify our abstract model as a pathway A -> B -> C. Enzyme one (E1) catalyzes the reaction A -> B and enzyme two (E2) catalyzes the reaction B -> C. The reaction equation is:</p>
 
-
<p align="justify">&nbsp;</p>
 
-
<p align="justify">`A \leftrightarrow B \leftrightarrow C`</p>
 
-
<p align="justify">&nbsp;</p>
 
-
<p align="justify">Molecular motion is continuous and complex so that it is difficult to model precisely. As a simplification, it is reasonable to discretize the continuous time as discrete steps and simplify the molecular Brownian motion as three-dimensional random walking. With this simplification, we can approximately observe the process of reaction and the reaction rate. Therefore, we present algorithms to simulate the process of molecular reaction dynamically and intuitionally.</p>
 
-
<p align="justify">&nbsp;</p>
 
-
<h2>Algorithm</h2>
 
-
<p align="justify">&nbsp;</p>
 
-
<p align="justify">In order to simulate the molecular motion and verify the fact that a RNA scaffold with two enzymes can speed reactions of the pathway, we simplify the complex realistic situation as a simple and virtual three dimensional world.</p>
 
-
<p align="justify">&nbsp;</p>
 
-
<h2>Assumptions:</h2>
 
-
<p align="justify">&nbsp;</p>
 
-
<p align="justify">1. The container is a cube and we assumed a unit. The edge of the cube is an integral multiple of one unit.</p>
 
-
<p align="justify">&nbsp;</p>
 
-
<p align="justify">2. The cube is in a grid pattern and all the molecules are at the grid intersections.</p>
 
-
<p align="justify">&nbsp;</p>
 
-
<p align="justify">3. The molecular motion is random walking in three dimensions.</p>
 
-
<p align="justify">&nbsp;</p>
 
-
<p align="justify">4. The molecule cannot cross the edge of the cube.</p>
 
-
<p align="justify">&nbsp;</p>
 
-
<h2>Algorithm:</h2>
 
-
<p align="justify">&nbsp;</p>
 
-
<p align="justify">Initial state: All the molecules including A, E1 and E2 are randomly scattered at the intersections</p>
 
-
<p align="justify">&nbsp;</p>
 
-
<p align="justify">Step 1: Check if there is A and E1 at the same intersection. If there, B is generated and A disappears.</p>
 
-
<p align="justify">&nbsp;</p>
 
-
<p align="justify">Step 2: Check if there is B and E2 at the same intersection. If there, C is generated and B disappears.</p>
 
-
<p align="justify">&nbsp;</p>
 
-
<p align="justify">Step 3: All the molecules are randomly walking one unit. If the molecule is going to across the border, it will be still and does not have a walk. Then, go back to step 1.</p>
 
-
<p align="justify">&nbsp;</p>
 
-
<h2>Implementation</h2>
 
-
<p align="justify">&nbsp;</p>
 
-
<p align="justify">We use the Matlab programming to construct the model and implement this algorithm, presenting the results using both data and 3D figures.</p>
 
-
<p align="justify">&nbsp;</p>
 
-
<h2>A small scale simulation</h2>
 
-
<p align="justify">&nbsp;</p>
 
-
<p align="justify">A small scale simulation is used to verify our algorithm, providing a clearly recognize of our algorithm. </p>
 
-
<p align="justify">&nbsp;</p>
 
-
<p align="justify">The initial parameters are as followings:</p>
 
-
<p align="justify">Edge of cube: 30 units</p>
 
-
<p align="justify">The number of A: 200</p>
 
-
<p align="justify">The number of B: 0</p>
 
-
<p align="justify">The number of C: 0</p>
 
-
<p align="justify">The number of E1: 25</p>
 
-
<p align="justify">The number of E2: 25</p>
 
-
<p align="justify">The distance between E1 and E2 for RNA scaffold: 2 units</p>
 
-
<p align="justify">&nbsp;</p>
 
-
<p align="justify">In the figure, we use the color yellow to represent A, green to B, red to C, blue to E1 and cyan to E2. This rule is used for all the figures in this section. The figures present the results vividly and visually. In addition, this is a random simulation so that we run the same code for 20 times and have an average outcome which is more convincing.</p>
 
-
<div><img src="http://www.jiajunlu.com/igem/zju_model2_1.jpg"></div>
 
-
<p align="justify">Figure 1. The initial state of the molecules for small scale simulation. The edge of cube is 30. There are 100 A, 25 E1 and 25 E2, which are randomly scattered in the cube container.
 
-
After 1000 iterations, the scaffold and non-scaffold results are as following:</p>
 
-
<p align="justify">&nbsp;</p>
 
-
<p align="justify">Scaffold &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Non-scaffold</p>
 
-
<p align="justify">The number of A: 94 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; The number of A: 101</p>
 
-
<p align="justify">The number of B: 63 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; The number of B: 73</p>
 
-
<p align="justify">The number of C: 43 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; The number of C: 26</p>
 
-
<p align="justify">The number of E1: 25 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; The number of E1: 25</p>
 
-
<p align="justify">The number of E2: 25 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; The number of E2: 25</p>
 
-
<p align="justify">&nbsp;</p>
 
-
<div><img src="http://www.jiajunlu.com/igem/zju_model2_2.jpg"></div>
 
-
<p align="justify">Figure 2. Result of scaffold system for small scale simulation. After 1000 iterations, there are 63 B and 43 C.</p>
 
-
<div><img src="http://www.jiajunlu.com/igem/zju_model2_3.jpg"></div>
 
-
<p align="justify">Figure 3. Result of non-scaffold system for small scale simulation. After 1000 iterations, there are 73 B and 26 C.</p>
 
-
<p align="justify">&nbsp;</p>
 
-
<p align="justify">From the results, we can find that the number of C for scaffold is more than those for non-scaffold. Therefore, enzyme one and enzyme two being on a RNA scaffold can help to improve the reaction rate. The figures can help to provide a visible reflection. Though the small scale simulation has verified our algorithm, we also present a large scale simulation and have some discussion.</p>
 
-
<p align="justify">&nbsp;</p>
 
-
<h2>A large scale simulation</h2>
 
-
<p align="justify">The initial state is as following:</p>
 
-
<p align="justify">Edge of cube: 50 units</p>
 
-
<p align="justify">The number of A: 2000</p>
 
-
<p align="justify">The number of B: 0</p>
 
-
<p align="justify">The number of C: 0</p>
 
-
<p align="justify">The number of E1: 50</p>
 
-
<p align="justify">The number of E2: 50</p>
 
-
<p align="justify">The distance between E1 and E2 for RNA scaffold: 2 units</p>
 
-
<p align="justify">&nbsp;</p>
 
-
<p align="justify">After 1200 iterations, the scaffold and non-scaffold results are as following:</p>
 
-
<p align="justify">Scaffold &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Non-scaffold</p>
 
-
<p align="justify">The number of A: 1417 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; The number of A: 1470</p>
 
-
<p align="justify">The number of B: 436 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; The number of B: 451</p>
 
-
<p align="justify">The number of C: 147 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; The number of C: 79</p>
 
-
<p align="justify">The number of E1: 50 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; The number of E1: 50</p>
 
-
<p align="justify">The number of E2: 50 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; The number of E2: 50</p>
 
-
<div><img src="http://www.jiajunlu.com/igem/zju_model2_4.jpg"></div>
 
-
<p align="justify">Figure 4. Result of scaffold system for large scale simulation. After 1200 iterations, there are 436 B and 147 C.</p>
 
-
<div><img src="http://www.jiajunlu.com/igem/zju_model2_5.jpg"></div>
 
-
<p align="justify">Figure 5. Result of non-scaffold system for large scale simulation. After 1200 iterations, there are 451 B and 79 C.</p>
 
-
<p align="justify">&nbsp;</p>
 
-
<h2>Comparison between scaffold system and non-scaffold system</h2>
 
-
<p align="justify">As the iteration increasing, the number of A is decreasing and the number of B and C are increasing. We record the number of B and C for both scaffold system and non-scaffold system as iteration grows to watch the reaction rate of pathway (i.e. the number of C).</p>
 
-
<div><img src="http://www.jiajunlu.com/igem/zju_model2_6.jpg"></div>
 
-
<p align="justify">Figure 6. The number of B and C as iteration grows.</p>
 
-
<p align="justify">&nbsp;</p>
 
-
<p align="justify">From figure 4.5.6, it is obvious that the number of C for scaffold system is more than that for non-scaffold system and the number of B for scaffold system is less than that for non-scaffold system. This phenomenon can be interpreted as that the probability that B meets an E2 is highly increased since their distance is closer. Therefore, it is safely to draw a conclusion that the reaction rate of pathway has been speed up because of the scaffold bringing two enzymes closer.</p>
 
-
<h2>Effect of enzymes concentration</h2>
+
<div class="projectNavFloat">
-
<p align="justify">From the above discussion, we assumed the concentration of enzymes is constant. However, the increasing concentration of enzymes also results in the increasing of reaction rate. The difference between scaffold and non-scaffold system varies when the concentration of enzymes increase.</p>
+
<a target="brainFrame" href="https://2012.igem.org/Team:ZJU-China/model_s2_1.htm">Preparation</a>
-
<p align="justify">&nbsp;</p>
+
<br>
-
<p align="justify">We select the number of E1 and E2 for 10, 40, 80, 120, 160, 200, 240, 280, 320 and 360 to record the number of C after 1200 iterations.</p>
+
<a target="brainFrame" href="https://2012.igem.org/Team:ZJU-China/model_s2_2.htm">A small scale simulation</a>
-
<div><img src="http://www.jiajunlu.com/igem/zju_model2_7.jpg"></div>
+
<br>
-
<p align="justify">Figure 7. The number of B and C vary according to the concentration of enzymes.</p>
+
<a target="brainFrame" href="https://2012.igem.org/Team:ZJU-China/model_s2_3.htm">A large scale simulation</a>
-
<p align="justify">&nbsp;</p>
+
</div><!-- end .projectNavFloat -->
-
<p align="justify">From the figure 7, we find that when the concentration of enzymes is too low and too high, the difference between scaffold and non-scaffold system is not noticeable. Only when the concentration of enzymes is at a certain range of value, the advantages of scaffold system is significant. It seems reasonable that when the concentration is too low, the reaction rate is also low. When the concentration is too high, the probability that B meets an E2 is approximately equal for both systems.</p>
+
<div class="projectNavFloat">
 +
<a target="brainFrame" href="https://2012.igem.org/Team:ZJU-China/model_s2_4.htm">Additional effects</a>
-
<h2>Effect of distance between two enzymes</h2>
+
</div><!-- end .projectNavFloat -->
-
<p align="justify">The distance between two enzymes E1 and E2 on RNA scaffold has an influence on reaction rate of pathway. If the E1 and E2 are closer, the probability that B, that is generated from A, meets an E2 is high for the reason that the distance between B and E2 are close. When the distance between E1 and E2 are getting further, the number of C is declining.</p>
+
-
<div><img src="http://www.jiajunlu.com/igem/zju_model2_8.jpg"></div>
+
-
+
-
<p align="justify">Figure 8. The number of B or C vary according to the distance between E1 and E2</p>
+
-
<p align="justify">&nbsp;</p>
+
-
<p align="justify">From figure 8, it is easily to figure out that as the distance between E1 and E2 increasing, the final number of C is decreasing. </p>
+
-
</div>
+
</div><!-- end .acc_container -->
</div><!-- end .acc_container -->

Revision as of 13:05, 26 September 2012

MODELS

01 Molecular Modeling

02 Scaffold or Non-scaffold