R + PR -> RPo % RNAP promoter binding and opening R + PR <- RPo % RNAP promoter closing and unbinding RPo -> 10P + R + PR % translation of protein and freeing of R and PR P + P -> D % dimerization P + P <- D % dedimerization P -> % protein degradation
x = [R PR RPo P D]
x0 = [10 1 0 0 0]
c = [2 1 4 2 0.5 0.05]
tfin, the duration of the simulation
tinc, the increment between interpolated time points
nr, the number of Gillespie runs
rtab, a cell array encoded the 6 reactions above
x0, the 5x1 vector above
c, the 6x1 vector above (or your variant)
Your mygill subfunction should behave like
function [t,dimer] = mygill(tfin, rtab, x, k)
In the absense of inhibition the dimer count is roughly increaing. To complete this assignment I ask you to augment your code to incorporate repression of PR by D via the two additional reactions
PR + D -> I % D binds PR and so R can not read I -> PR + D % D unbinds PR
Your work will be graded as follows:
First draft
2 pts for gilldriver loop
4 pts for mygill outline using rtab cell and update
Final draft
8 pts for header CONTAINING detailed USAGE
8 pts for further comments in code
4 pts for indentation
10 pts for correct gillrunner
10 pts for correct computation of reaction number
8 pts for correct coding of update
6 pts for two jpeg plots corresponding to the free dimer
production, and to its self-regulated production.
EXTRA CREDIT - PLEDGED
15 points for a 500 word essay. The essay must be typed and
have a title, introduction and body. The backbone of the
essay should be an overview of the paper by McAdams and Arkin.
Into that foundation you should weave detailed reference to
your own Boolean and Gillespien gene work and discuss its
connection to the gene knock-out work that this week received
the Nobel prize in Physiology or Medicine.
You may neither give nor receive aid from other students. You should consult
and cite both paper and electronic media. Your citation list
does not count toward the 500 word minimum.