Team:Paris/Modeling/f3prog

From 2008.igem.org

(Difference between revisions)
Hugo (Talk | contribs)
(New page: <html> <style type="text/css"> pre {font-size: 1.2em} span.keyword {color: #0000FF} span.comment {color: #228B22} span.string {color: #A020F0} span.untermstring {color: #B20000} span.sysc...)

Latest revision as of 03:52, 30 October 2008

ƒ3

function act_pFlhDC = f3(FliA, OmpR)
% activity of pFlhDC in function of OmpR and FliA
 
global beta17 K15 n15 beta22 K6 n6;
% parameters
 
act_pFlhDC = ( 1 - hill( OmpR, K15, n15 ) ) * ...
     (beta17 * (1 - hill( FliA, K6, n6)) + beta22 * hill( FliA, K6, n6) );
 
end