Team:Duke/Modeling/Codes/Thermo1

From 2013.igem.org

(Difference between revisions)
(Created page with "{{Template:Team:Duke}} <div class="right_box"> = '''Mathematical Modeling of Bistable Toggle Switch''' = Nns=5*10^6; %Number of non-specific sites Kb=1.3806*10^-23; %(JK-1) %B...")
(Mathematical Modeling of Bistable Toggle Switch)
Line 5: Line 5:
= '''Mathematical Modeling of Bistable Toggle Switch''' =
= '''Mathematical Modeling of Bistable Toggle Switch''' =
-
Nns=5*10^6; %Number of non-specific sites
+
<br>Nns=5*10^6; %Number of non-specific sites
-
Kb=1.3806*10^-23; %(JK-1) %Boltzman's constant
+
<br>Kb=1.3806*10^-23; %(JK-1) %Boltzman's constant
-
T=298; %(K) %Temperature in Kelvin
+
<br>T=298; %(K) %Temperature in Kelvin
-
P=3000; %Number of RNA polymerase (2000-4000)
+
<br>P=3000; %Number of RNA polymerase (2000-4000)
-
 
+
<br>
-
Kspd=100*10^-9; %dissociation constant for specific binding of polymerase on DNA
+
<br>Kspd=100*10^-9; %dissociation constant for specific binding of polymerase on DNA
-
Knspd=10000; %dissociation constant for non-specific binding of polymerase on DNA
+
<br>Knspd=10000; %dissociation constant for non-specific binding of polymerase on DNA
-
delEpd=Kb*T*log(Kspd/Knspd); %Binding energy between polymerase and DNA
+
<br>delEpd=Kb*T*log(Kspd/Knspd); %Binding energy between polymerase and DNA
-
 
+
<br>
-
Ksrd=(3)*10^-9; %TALE %dissociation constant for specific binding of repressor on DNA (TALE: 1/150nM~, paper example: 0.02)
+
<br>Ksrd=(3)*10^-9; %TALE %dissociation constant for specific binding of repressor on DNA (TALE: 1/150nM~, paper <br>example: 0.02)
-
Knsrd=10000; %dissociation constant for non-specific binding of repressor on DNA
+
<br>Knsrd=10000; %dissociation constant for non-specific binding of repressor on DNA
-
delErd=Kb*T*log(Ksrd/Knsrd); %Binding energy between repressor and DNA
+
<br>delErd=Kb*T*log(Ksrd/Knsrd); %Binding energy between repressor and DNA
-
 
+
<br>
-
R=logspace(-6, 5,100); %Number of repressors
+
<br>R=logspace(-6, 5,100); %Number of repressors
-
% R=linspace(0,100);
+
<br>% R=linspace(0,100);
-
Freg1=1./(1+(R./Nns).*exp(-delErd/(Kb*T))); %Regulation factor 1x (<1 for repression)
+
<br>Freg1=1./(1+(R./Nns).*exp(-delErd/(Kb*T))); %Regulation factor 1x (<1 for repression)
-
Freg3=(1./(1+(R./Nns).*exp(-delErd/(Kb*T)))).^3; %Regulation factor 3x (<1 for repression)
+
<br>Freg3=(1./(1+(R./Nns).*exp(-delErd/(Kb*T)))).^3; %Regulation factor 3x (<1 for repression)
-
Freg5=(1./(1+(R./Nns).*exp(-delErd/(Kb*T)))).^5; %Regulation factor 5x (<1 for repression)
+
<br>Freg5=(1./(1+(R./Nns).*exp(-delErd/(Kb*T)))).^5; %Regulation factor 5x (<1 for repression)
-
 
+
<br>
-
p_bound_base=1./(1+(Nns/P)*exp(delEpd/(Kb*T))); %basal level
+
<br>p_bound_base=1./(1+(Nns/P)*exp(delEpd/(Kb*T))); %basal level
-
p_bound_1=1./(1+(Nns./(P.*Freg1)).*exp(delEpd/(Kb*T))); %level with repressor bound (1x)
+
<br>p_bound_1=1./(1+(Nns./(P.*Freg1)).*exp(delEpd/(Kb*T))); %level with repressor bound (1x)
-
p_bound_3=(1./(1+(Nns./(P.*Freg3)).*exp(delEpd/(Kb*T)))); %level with repressor bound (3x)  
+
<br>p_bound_3=(1./(1+(Nns./(P.*Freg3)).*exp(delEpd/(Kb*T)))); %level with repressor bound (3x)  
-
p_bound_5=(1./(1+(Nns./(P.*Freg5)).*exp(delEpd/(Kb*T)))); %level with repressor bound (5x)  
+
<br>p_bound_5=(1./(1+(Nns./(P.*Freg5)).*exp(delEpd/(Kb*T)))); %level with repressor bound (5x)  
-
 
+
<br>
-
Fold_Change1=p_bound_1./p_bound_base; %Fold Change 1x
+
<br>Fold_Change1=p_bound_1./p_bound_base; %Fold Change 1x
-
Fold_Change3=p_bound_3./p_bound_base; %Fold Change 3x
+
<br>Fold_Change3=p_bound_3./p_bound_base; %Fold Change 3x
-
Fold_Change5=p_bound_5./p_bound_base; %Fold Change 5x
+
<br>Fold_Change5=p_bound_5./p_bound_base; %Fold Change 5x
-
 
+
<br>
-
fit1=1./(0.0111.*(R).^1+1);
+
<br>fit1=1./(0.0111.*(R).^1+1);
-
fit3=1./(4.7215e9.*(R).^2.9929+1);
+
<br>fit3=1./(4.7215e9.*(R).^2.9929+1);
-
fit5=1./(6.6001e20.*(R).^4.8635+1);
+
<br>fit5=1./(6.6001e20.*(R).^4.8635+1);
-
 
+
<br>
-
 
+
<br>
-
figure1=figure(1);
+
<br>figure1=figure(1);
-
% subplot(2,1,1),semilogx(R,Fold_Change1,'k.', R,fit1,'k-', R,Fold_Change3,'b.', R,fit3,'b-', R,Fold_Change5,'r.',R,fit5,'r-')
+
<br>% subplot(2,1,1),semilogx(R,Fold_Change1,'k.', R,fit1,'k-', R,Fold_Change3,'b.', R,fit3,'b-', <br>R,Fold_Change5,'r.',R,fit5,'r-')
-
semilogx(R,Fold_Change1,'k.', R,fit1,'k-', R,Fold_Change3,'b.', R,fit3,'b-', R,Fold_Change5,'r.',R,fit5,'r-')
+
<br>semilogx(R,Fold_Change1,'k.', R,fit1,'k-', R,Fold_Change3,'b.', R,fit3,'b-', R,Fold_Change5,'r.',R,fit5,'r-')
-
axis([10^-6 10^5 0 1])
+
<br>axis([10^-6 10^5 0 1])
-
title(char('Thermodynamic Model and Apparent Hill Coefficient','    Fold Change vs Repressor Level (Lin - Log)'))
+
<br>title(char('Thermodynamic Model and Apparent Hill Coefficient','    Fold Change vs Repressor Level (Lin - Log)'))
-
xlabel('R (number of repressor molecules)')
+
<br>xlabel('R (number of repressor molecules)')
-
ylabel('Fold-Change of P_b_o_u_n_d')
+
<br>ylabel('Fold-Change of P_b_o_u_n_d')
-
%ylabel(char('            Fold-Change of P_b_o_u_n_d','(probability of Polymerase binding to promoter)'))
+
<br>%ylabel(char('            Fold-Change of P_b_o_u_n_d','(probability of Polymerase binding to promoter)'))
-
legend('1x Binding Site Model','1x Binding Site Hill Function Fit', '3x Binding Site Model', '3x Binding Site Hill Function Fit','5x Binding Site Model','5x Binding Site Hill Function Fit','Location','NorthEastOutside')
+
<br>legend('1x Binding Site Model','1x Binding Site Hill Function Fit', '3x Binding Site Model', '3x Binding Site Hill <br>Function Fit','5x Binding Site Model','5x Binding Site Hill Function Fit','Location','NorthEastOutside')
-
 
+
<br>
-
 
+
<br>
-
 
+
<br>
-
% subplot(2,1,2),loglog(R,Fold_Change1,'k--', R,Fold_Change3,'b--', R,Fold_Change5,'r--')
+
<br>% subplot(2,1,2),loglog(R,Fold_Change1,'k--', R,Fold_Change3,'b--', R,Fold_Change5,'r--')
-
figure(2)
+
<br>figure(2)
-
loglog(R,Fold_Change1,'k--', R,Fold_Change3,'b--', R,Fold_Change5,'r--')
+
<br>loglog(R,Fold_Change1,'k--', R,Fold_Change3,'b--', R,Fold_Change5,'r--')
-
axis([10^-6 10^5 10^-3 10^0])
+
<br>axis([10^-6 10^5 10^-3 10^0])
-
title(char('    Thermodynamic Model and Sensitivity','Fold Change vs Repressor Level (Log - Log)'))
+
<br>title(char('    Thermodynamic Model and Sensitivity','Fold Change vs Repressor Level (Log - Log)'))
-
legend('1x Binding Site', '3x Binding Site', '5x Binding Site','Location','NorthEastOutside')
+
<br>legend('1x Binding Site', '3x Binding Site', '5x Binding Site','Location','NorthEastOutside')
-
xlabel('R (number of repressor molecules)')
+
<br>xlabel('R (number of repressor molecules)')
-
ylabel('Fold-Change of P_b_o_u_n_d')
+
<br>ylabel('Fold-Change of P_b_o_u_n_d')
-
% ylabel(char('            Fold-Change of P_b_o_u_n_d','(probability of Polymerase binding to promoter)'))
+
<br>% ylabel(char('            Fold-Change of P_b_o_u_n_d','(probability of Polymerase binding to promoter)'))
-
 
+
<br>
-
 
+
<br>
<br><br><br>
<br><br><br>
</div>
</div>

Revision as of 03:37, 22 September 2013

  • 1 1
  • 2 2
  • 3 3
  • 4 4
  • 5 5
  • 6 6
  • 7 7
  • 8 8
  • 9 9
  • 10 10


Mathematical Modeling of Bistable Toggle Switch


Nns=5*10^6; %Number of non-specific sites
Kb=1.3806*10^-23; %(JK-1) %Boltzman's constant
T=298; %(K) %Temperature in Kelvin
P=3000; %Number of RNA polymerase (2000-4000)

Kspd=100*10^-9; %dissociation constant for specific binding of polymerase on DNA
Knspd=10000; %dissociation constant for non-specific binding of polymerase on DNA
delEpd=Kb*T*log(Kspd/Knspd); %Binding energy between polymerase and DNA

Ksrd=(3)*10^-9; %TALE %dissociation constant for specific binding of repressor on DNA (TALE: 1/150nM~, paper
example: 0.02)
Knsrd=10000; %dissociation constant for non-specific binding of repressor on DNA
delErd=Kb*T*log(Ksrd/Knsrd); %Binding energy between repressor and DNA

R=logspace(-6, 5,100); %Number of repressors
% R=linspace(0,100);
Freg1=1./(1+(R./Nns).*exp(-delErd/(Kb*T))); %Regulation factor 1x (<1 for repression)
Freg3=(1./(1+(R./Nns).*exp(-delErd/(Kb*T)))).^3; %Regulation factor 3x (<1 for repression)
Freg5=(1./(1+(R./Nns).*exp(-delErd/(Kb*T)))).^5; %Regulation factor 5x (<1 for repression)

p_bound_base=1./(1+(Nns/P)*exp(delEpd/(Kb*T))); %basal level
p_bound_1=1./(1+(Nns./(P.*Freg1)).*exp(delEpd/(Kb*T))); %level with repressor bound (1x)
p_bound_3=(1./(1+(Nns./(P.*Freg3)).*exp(delEpd/(Kb*T)))); %level with repressor bound (3x)
p_bound_5=(1./(1+(Nns./(P.*Freg5)).*exp(delEpd/(Kb*T)))); %level with repressor bound (5x)

Fold_Change1=p_bound_1./p_bound_base; %Fold Change 1x
Fold_Change3=p_bound_3./p_bound_base; %Fold Change 3x
Fold_Change5=p_bound_5./p_bound_base; %Fold Change 5x

fit1=1./(0.0111.*(R).^1+1);
fit3=1./(4.7215e9.*(R).^2.9929+1);
fit5=1./(6.6001e20.*(R).^4.8635+1);


figure1=figure(1);
% subplot(2,1,1),semilogx(R,Fold_Change1,'k.', R,fit1,'k-', R,Fold_Change3,'b.', R,fit3,'b-',
R,Fold_Change5,'r.',R,fit5,'r-')
semilogx(R,Fold_Change1,'k.', R,fit1,'k-', R,Fold_Change3,'b.', R,fit3,'b-', R,Fold_Change5,'r.',R,fit5,'r-')
axis([10^-6 10^5 0 1])
title(char('Thermodynamic Model and Apparent Hill Coefficient',' Fold Change vs Repressor Level (Lin - Log)'))
xlabel('R (number of repressor molecules)')
ylabel('Fold-Change of P_b_o_u_n_d')
%ylabel(char(' Fold-Change of P_b_o_u_n_d','(probability of Polymerase binding to promoter)'))
legend('1x Binding Site Model','1x Binding Site Hill Function Fit', '3x Binding Site Model', '3x Binding Site Hill
Function Fit','5x Binding Site Model','5x Binding Site Hill Function Fit','Location','NorthEastOutside')



% subplot(2,1,2),loglog(R,Fold_Change1,'k--', R,Fold_Change3,'b--', R,Fold_Change5,'r--')
figure(2)
loglog(R,Fold_Change1,'k--', R,Fold_Change3,'b--', R,Fold_Change5,'r--')
axis([10^-6 10^5 10^-3 10^0])
title(char(' Thermodynamic Model and Sensitivity','Fold Change vs Repressor Level (Log - Log)'))
legend('1x Binding Site', '3x Binding Site', '5x Binding Site','Location','NorthEastOutside')
xlabel('R (number of repressor molecules)')
ylabel('Fold-Change of P_b_o_u_n_d')
% ylabel(char(' Fold-Change of P_b_o_u_n_d','(probability of Polymerase binding to promoter)'))