Team:ZJU-China/sourcecode1.htm
From 2012.igem.org
Source program 1:
data ribo;
input gfp theo @@;
cards;
22230 0 25855 0.1 29227 0.2 34357 0.3 34575 0.4 39766 0.5
14905 0 21407 0.1 21546 0.2 24699 0.3 27383 0.4 30470 0.5
27774 0 28647 0.1 29131 0.2 29751 0.3 31131 0.4 46907 0.5
;
proc glm;
class theo;
model gfp=theo;
Means theo/LSD;
run;
White means no significant variations between two treatments of Theophylline and red means significant variations.
Source program 2:
data ribo;
input gfp theo @@;
cards;
29188 0 30700 0.1 19999 0.3 23492 0.5 31119 0.7 15671 1
13870 0 16483 0.2 16965 0.4 17516 0.5 16221 0.6
;
proc glm;
class theo;
model gfp=theo;
Means theo/LSD;
run;