Team:Paris/Modeling/f3bisprog

From 2008.igem.org

(Difference between revisions)
(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...)
(find_ƒ3 ( FliA ))
 
Line 14: Line 14:
<div style="text-align: left">
<div style="text-align: left">
-
== find_&#131;3 ( ''FliA'' ) ==
+
== &#131;3bis ==
<html><pre class="codeinput">
<html><pre class="codeinput">

Latest revision as of 03:57, 30 October 2008

ƒ3bis

function act_pFlhDC = f3bis(EnvZ, FliA)
% expression of pTet in function of EnvZ and FliA
 
global beta17 K15 n15 beta22 K6 n6 OmpR_b EnvZ_b K14 n14;
% parameters
 
OmpR_P = complexes((OmpR_b + EnvZ),EnvZ,K14,n14);
% Quantity of "phosphorylated OmpR"
 
act_pFlhDC = ( 1 - hill( OmpR_P, K15, n15 ) ) * ...
     (beta17 * (1 - hill( FliA, K6, n6)) + beta22 * hill( FliA, K6, n6) );
 
end