Imperial College/Courses/Fall2008/Synthetic Biology (MRes class)/'R' Tutorial/Practical 2: Difference between revisions

From OpenWetWare
Jump to navigationJump to search
Line 18: Line 18:
<br style="clear:both">
<br style="clear:both">


==Exercise 1 (Data frames)==
==Exercise 1 (Data frames and inputs/ouputs)==


==Exercise 2 (ODE Solver)==
==Exercise 2 (ODE Solver)==

Revision as of 07:38, 4 December 2008

Fall 2008 - Synthetic Biology (MRes class)

Home        'R' Tutorial        Resources        Literature

<html> <body> <!-- Start of StatCounter Code --> <script type="text/javascript"> var sc_project=3315864; var sc_invisible=0; var sc_partition=36; var sc_security="8bb2efcd"; </script>

<script type="text/javascript" src="http://www.statcounter.com/counter/counter_xhtml.js"></script><noscript><div class="statcounter"><a class="statcounter" href="http://www.statcounter.com/"><img class="statcounter" src="http://c37.statcounter.com/3315864/0/8bb2efcd/0/" alt="blog stats" /></a></div></noscript> <!-- End of StatCounter Code -->

</body> </html>

Introduction to 'R'



Exercise 1 (Data frames and inputs/ouputs)

Exercise 2 (ODE Solver)

  • Model: Constitutive gene expression
    • ODE System:
      • d[mRNA]/dt = k_1 - d_1*[mRNA]
      • d[protein]/dt = k_2[mRNA] -d_2*[protein]
  • Questions:
    • 1.Considering that the half-life for the mRNA and the protein is respectively 3min and 1h. Workout the values of (k_1, d_1, k_2, d_2) so that, at steady state, [mRNA] = 3 and [protein] = 500.
    • 2.Using the previously found parameter values, plot on the same graph [mRNA](t) and [protein](t) for t=[0, 5h].
    • 3. Parameter scanning: Consider parameter d_2 to vary [-20%, 20%] of its nominal value (10 uniformly spread values). Generate on the same graph the 10 [protein](t) trajectories (t=[0, 5h]).

Exercise 3 (Non linear regression)