Method & Algorithm : 1
Specific Plasmid Characterisation for 1
According to the characterization plasmid (see right) and to our modeling, in the exponential phase of growth, at the steady state, the experiment would give us
and at steady-state and in the exponential phase of growth, we expect :
we use this analytical expression to determine the parameters :
↓ Table of Values ↑
param
| signification
| unit
| value
| comments
|
(fluorescence)
| value of the observed fluorescence
| au
|
| need for 20 values with well choosen [aTc]i
|
conversion
| conversion ration between fluorescence and concentration ↓ gives ↓
| nM.au-1
| (1/79.429)
|
|
[GFP]
| GFP concentration at steady-state
| nM
|
|
|
γGFP
| dilution-degradation rate of GFP(mut3b) ↓ gives ↓
| min-1
| 0.0198
| Only dilution : Time Cell Division : 35 min.
|
1
| activity of pTet with RBS E0032
| nM.min-1
|
|
|
param
| signification corresponding parameters in the equations
| unit
| value
| comments
|
βtet
| basal activity of pTet with RBS E0032 β16
| nM.min-1
|
|
|
(Ktet/{coeftetR})
| activation constant of TetR><pTet K13
| nM
|
| The optimisation program will give us (γ Ktet / {coeftet} 0) The literature [?] gives Ktet =
|
ntet
| complexation order of TetR><pTet n13
| no dimension
|
| The literature [?] gives ntet =
|
KaTc
| complexation constant aTc><TetR K12
| nM
|
| The literature [?] gives KaTc =
|
naTc
| complexation order aTc><TetR n12
| no dimension
|
| The literature [?] gives naTc =
|
|
↓ Algorithms ↑
find_1
function optimal_parameters = find_f1(X_data, Y_data, initial_parameters)
function output = expr_pTet(parameters, X_data)
for k = 1:length(X_data)
output(k) = parameters(1) * (1 - ...
hill((1 - hill(X_data(k),parameters(4),parameters(5))),parameters(2),parameters(3)));
end
end
options=optimset('LevenbergMarquardt','on','TolX',1e-10,'MaxFunEvals',1e10,'TolFun',1e-10,'MaxIter',1e4);
optimal_parameters = lsqcurvefit( @(parameters, X_data) expr_pTet(parameters, X_data), ...
initial_parameters, X_data, Y_data, 1/10*initial_parameters, 10*initial_parameters, options );
end
Inv_1
function quant_aTc = Inv_f1(inducer_quantity)
global gamma, f0;
function equa = F(x)
equa = f1( (f0/gamma) , x ) - inducer_quantity;
end
options=optimset('LevenbergMarquardt','on','TolX',1e-10,'MaxFunEvals',1e10,'TolFun',1e-10,'MaxIter',1e4);
quant_aTc = fsolve(F,1,options);
end
|
Also, this experiment will enable us to know the expression of 1 :
<Back - to "Implementation" |
<Back - to "Protocol Of Characterization" |
|