Team:EPF-Lausanne/Analysis

From 2009.igem.org

(Difference between revisions)
m (RMSD of selected atoms compared to initial position along time)
(Examples)
 
(187 intermediate revisions not shown)
Line 12: Line 12:
<br>
<br>
-
==RMSD for individual residues==
 
-
We aim at finding the average RMSD over time for each residue in the protein using VMD.
 
-
'''1.''' We load the ''.psf'' and ''.dcd'' files obtained after the first round of simulation.
 
 +
=Scripts=
 +
As this page is getting crowded, we created another page to explain all the scripts we wrote. The current page has some kind of step by step tutorials, but if you want fast informations, you better go to the [[Team:EPF-Lausanne/Scripts|script page]].
-
'''2.''' In the TkCon window type:
 
-
: source residue_rmsd.tcl
 
-
: set sel_resid [[atomselect top "protein and alpha"] get resid]
 
-
This will get all the residues number of all alpha-carbons in the protein. Since there is just one and only one α-carbon per residue, it is a good option.
 
 +
=Tutorials=
 +
<br>
 +
== Maxwell-Boltzmann Energy Distribution ==
-
'''3.''' Now we will calculate the RMSD values of all atoms in the newly created selection:
+
<html>
-
: rmsd residue over time top $sel resid
+
<script type="text/javascript" language="JavaScript"><!--
-
At the end of the calculation, we have a list of the avergae RMSD per residue (in the file residue_rmsd.dat)
+
function HideContent(d) {
 +
document.getElementById(d).style.display = "none";
 +
}
 +
function ShowContent(d) {
 +
document.getElementById(d).style.display = "block";
 +
}
 +
function ReverseDisplay(d) {
 +
if(document.getElementById(d).style.display == "none") { document.getElementById(d).style.display = "block"; }
 +
else { document.getElementById(d).style.display = "none"; }
 +
}
 +
//--></script>
 +
<p>
 +
<a href="javascript:ReverseDisplay('hs1')">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Click here to show/hide</a>
 +
</p>
-
'''4.''' In VMD, in Graphics → Representations, do the following actions:  
+
<div id="hs1" style="display:none;">
-
* create two replicates: protein and resname FMN in selected atoms
+
<p>
-
* for the FMN, choose CPK as a drawing method
+
Here we will confirm that the kinetic energy distribution of the atoms in a system corresponds to the Maxwell distribution for a given temperature.
-
* for the protein, choose tube as drawing method, and ''user'' as coloring method. Now click on the Trajectory tab, and in the Color Scale Data Range, type 0.40 and 1.00.
+
<br><br>
 +
<b>1.</b> In VMD, load the <i>.psf file</i>. Browse for the restart velocity file (in our case, it was <i>2v0w_hydr_wb_i_eq.restart.vel</i>), the type of file need this time to be selected. In the Determine file type: pull-down menu, choose NAMD Binary Coordinates, and load again.
 +
<br>
 +
The molecule looks terrible! That is because VMD is reading the velocities as if they were coordinates, but how it looks doesn't matter: we just need VMD to make a file containing the masses and velocities for every atom.
 +
<br><br>
 +
<b>2.</b> We create a selection with all the atoms in the system, by typing in the TkCon window:
 +
<br><span style="font-family: Courier;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; set all [atomselect top all] </span>
 +
<br> Open a file energy.dat for writing:
 +
<br><span style="font-family: Courier;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; set fil [open energy.dat w] </span>
 +
<br><br>
 +
<b>3.</b> For each atom in the system, calculate the kinetic energy, and write it to a file :
 +
<br><span style="font-family: Courier;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; foreach m [$all get mass] v [$all get {x y z}] {
 +
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; puts $fil [expr 0.5 * $m * [vecdot $v $v] ]
 +
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; } </span>
 +
<br>Close the file:
 +
<br><span style="font-family: Courier;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; close $fil  </span>
 +
<br>
 +
<br>All these steps can be avoided by typing in the Terminal Window:
 +
<br><span style="font-family: Courier;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; vmd -dispdev text -e get energy.tcl </span>
 +
<br>
 +
<br>We now have a file of raw data that can be used to fit the obtained energy distribution to the Maxwell-Boltzmann distribution. The temperature of the distribution can be obtained from that fit.
 +
<br><br>
 +
<b>1.</b> In a Terminal window, type xmgrace. In the xmgrace window, choose the Data → Import → ASCI I menu item. In the Files box, select the file <i>energy.dat</i>. Click on the OK button. You should see a black trace which correspond to the raw data.
 +
<br><br>
 +
<b>2.</b> To look at the distribution of points, we will make a histogram of this data. Choose the Data → Transformations → Histograms menu item. In the Source → Set window, click on the first line, in order to make a histogram of the data just loaded.
 +
<br>
 +
Click on the Normalize option.
 +
<br>
 +
Fill in Start: 0, Stop at: 10, and # of bins: 100, and Apply.
 +
<br>
 +
<center>
 +
<img src="https://static.igem.org/mediawiki/2009/thumb/8/8c/Non_linear_curve_fitting.jpg/300px-Non_linear_curve_fitting.jpg">
 +
</center><br>
 +
<b>3.</b> The plot has been created, but cannot be seen yet. Use the right button of the mouse to click on the first set (in the Source → Set window).
 +
<br>Click on Hide. Now, go to the main Grace window and click on the button labeled AS: it will resize the plot to fit the existing values. This is the distribution of energies.
 +
<br>
 +
Now, we will fit a Maxwell-Boltzmann distribution to this plot and find out the temperature that the distribution corresponds to.
 +
<br><br>
 +
<b>4.</b> Choose the Data → Transformations → Non-linear curve fitting menu item. In the Source → Set window, click on the last line, which corresponds to the histogram you created.
 +
<br>
 +
<br>In the Main tab, type in the Formula window:
 +
<br><span style="font-family: Courier;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; y = (2/ sqrt(Pi * a0 ∧3 )) * sqrt(x) * exp (-x / a0) </span>
 +
<br>This will fit the curve and get a fit for the parameter a0, which corresponds to kB T in units of kcal/mol.
 +
<br><center><img src="https://static.igem.org/mediawiki/2009/thumb/a/a1/Boltzmann.png/300px-Boltzmann.png"></center>
 +
<br>
 +
<b>5.</b> In the Parameters drop-down menu, choose 1.  You can give an initial value to A0, so that the iterations will look for a value in the vicinity of your initial guess. In the A0 window, type 0.6, which in kcal/mol corresponds to a temperature of ∼ 300K.
 +
<br><center><img src="https://static.igem.org/mediawiki/2009/thumb/0/04/A0.jpg/350px-A0.jpg"></center>
 +
<br>Click on the Apply button. This will open a window with the new value for a0, as well as some statistical measures, including the Correlation Coefficient, which is a measure of the fit.
 +
<br><center><img src="https://static.igem.org/mediawiki/2009/thumb/9/92/Correlation_coefficient.jpg/350px-Correlation_coefficient.jpg"></center>
 +
<br>The value of a0 obtained corresponds to kB T . Obtain the temperature T for this distribution with kB = 0.00198657 kcal
 +
/mol /K.
 +
<br>
 +
We obtain the following histogramm!
 +
<br><center><img src="https://static.igem.org/mediawiki/2009/a/aa/Maxwell-Boltzmann_Energy_Distribution.jpg"></center>
 +
<br>
-
[[Image:Vmd_color.png|200px|center]]
 
-
The protein is colored according to its average RMSD values. The residues displayed in blue are more mobile while the ones in red move less.  
+
<html>
 +
<p align="center" class="style1"><a href="#top"><img src="https://static.igem.org/mediawiki/2009/thumb/0/06/Up_arrow.png/50px-Up_arrow.png" alt="Back to top" border="0"></a><br></p>
 +
</html>
 +
<br>
 +
<html><center>
 +
<style type="text/css">
 +
<!--
 +
.combobox {
 +
background-color: #FFFFFF;
 +
color: #808080;
 +
font-size: 10pt;
 +
font-family: verdana;
 +
font-weight: bold;
 +
}
 +
-->
 +
</style>
 +
<form>
 +
<table border="0" width="80" cellspacing="0">
 +
<tr><td width="100%" bgcolor="#000000">
 +
<table border="0" width="100%" cellspacing="0" cellpadding="0">
 +
<tr><td width="100%" background="https://static.igem.org/mediawiki/2009/b/b3/BoxtopA.png"><img border="0" src="11dot.gif" width="19" height="19"></td></tr>
 +
</table>
 +
<table border="0" width="100%" cellspacing="0" cellpadding="3">
 +
<tr><td width="2%" background="https://static.igem.org/mediawiki/2009/b/bd/BoxbackA.png">
 +
<img border="0" src="11dot.gif" width="18" height="18">
 +
</td><td width="98%" background="https://static.igem.org/mediawiki/2009/6/6e/BoxbackB.png">
 +
<select class="combobox" name="SiteMap" onchange="if(options[selectedIndex].value){location = options[selectedIndex].value}" size="1">
 +
<option selected>Go to:  </option>
 +
<option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Maxwell-Boltzmann_Energy_Distribution">Maxwell-Boltzmann Energy Distribution </option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Energies">Energies</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Temperature_distribution">Temperature distribution</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Density">Density </option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Pressure_as_a_function_of_simulation_time">Pressure</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#RMSD_for_individual_residues">RMSD for individual residues</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#RMSD_of_selected_atoms_compared_to_initial_position_along_time">RMSD of selected atoms</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Salt_bridges">Salt bridges</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#RMSF">RMSF</option>
 +
</select>
 +
</td></tr>
 +
</table>
 +
</td></tr>
 +
</table>
 +
</form></center>
-
Here is a movie with the protein colored according to average RMSD values.
+
</p>
 +
</div>
 +
</html>
 +
<br>
-
[[Media:Moving_residue.mov‎|RMSD moving residues ]]
+
== Energies ==
 +
<html>
 +
<script type="text/javascript" language="JavaScript"><!--
 +
function HideContent(d) {
 +
document.getElementById(d).style.display = "none";
 +
}
 +
function ShowContent(d) {
 +
document.getElementById(d).style.display = "block";
 +
}
 +
function ReverseDisplay(d) {
 +
if(document.getElementById(d).style.display == "none") { document.getElementById(d).style.display = "block"; }
 +
else { document.getElementById(d).style.display = "none"; }
 +
}
 +
//--></script>
-
'''5.''' Now we can plot the RMSD value per residue by typing in a Terminal window :
+
<p>
-
: xmgrace residue rmsd.dat
+
<a href="javascript:ReverseDisplay('hs2')">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Click here to show/hide</a>
-
We obtain the following picture:
+
</p>
-
[[Image:RMSD_CA_per_res.jpg‎ | 700px |center]]
+
<div id="hs2" style="display:none;">
-
 
+
<p>
-
<html>
+
Here we will calculate the averages of the various energies (kinetic and the different internal energies: bonded (bonds,
-
<p align="center" class="style1"><a href="#top"><img src="https://static.igem.org/mediawiki/2009/thumb/0/06/Up_arrow.png/50px-Up_arrow.png" alt="Back to top" border="0"></a><br></p>
+
angles and dihedrals) and non-bonded (electrostatic, van der Waals)) over the course of a simulation.
-
</html>  
+
<br><br>
 +
<b>1.</b> We start with a file obtained from NAMD: <br>http://www.ks.uiuc.edu/Research/namd/utilities/ and download <i>namdstat.tcl</i>
 +
<br><br>
 +
<b>2.</b> In the VMD TkCon window, type :
 +
<br><span style="font-family: Courier;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;source namdstats.tcl
 +
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;data avg ../namd_log 101 last </span>
 +
<br>The second line will call a procedure which will calculate the average for all output variables in the log file from the first logged timestep after 101 to the end of the simulation.
 +
</p>
 +
</div>
 +
</html>
<br>
<br>
 +
== Temperature distribution ==
 +
<html>
 +
<script type="text/javascript" language="JavaScript"><!--
 +
function HideContent(d) {
 +
document.getElementById(d).style.display = "none";
 +
}
 +
function ShowContent(d) {
 +
document.getElementById(d).style.display = "block";
 +
}
 +
function ReverseDisplay(d) {
 +
if(document.getElementById(d).style.display == "none") { document.getElementById(d).style.display = "block"; }
 +
else { document.getElementById(d).style.display = "none"; }
 +
}
 +
//--></script>
-
== Maxwell-Boltzmann Energy Distribution ==
+
<p>
-
Here we will confirm that the kinetic energy distribution of the atoms in a system corresponds to the Maxwell distribution for a given temperature.
+
<a href="javascript:ReverseDisplay('hs3')">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Click here to show/hide</a>
 +
</p>
-
'''1.''' In VMD, load the ''.psf file''. Browse for the restart velocity file (in our case, it was ''2v0w_hydr_wb_i_eq.restart.vel''), the type of file need this time to be selected. In the Determine file type: pull-down menu, choose NAMD Binary Coordinates, and load again.
+
<div id="hs3" style="display:none;">
 +
<p>
-
The molecule looks terrible! That is because VMD is reading the velocities as if they were coordinates, but how it looks doesn't matter: we just need VMD to make a file containing the masses and velocities for every atom.
+
<b>Objective:</b> Simulate our protein in an NVE ensemble, and analyze the temperature distribution.
 +
<br>
 +
<br>In order to obtain the data for the temperature from the log file we will again use the script <i>namdstats.tcl</i>, which was already sourced. Type in a terminal window:
 +
<br><span style="font-family: Courier;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; data_time TEMP namd_log </span>
 +
<br>It will store each timestep and its corresponding temperature in the file TEMP.dat.
 +
<br><br>
 +
Using EXCEL, we obtain the following graph, which represents the evolution of the temperature in function of time:
 +
<br><br><img src="https://static.igem.org/mediawiki/2009/c/cf/Temp%28t%29.png">
 +
<br>The first part corresponds the the heating, then we let the system reach an equilibrium (NPT state), a NVT portion, and finally a NPT portion again.
-
'''2.''' We create a selection with all the atoms in the system, by typing in the TkCon window:  
+
<html><center>
-
: set all [atomselect top all]
+
<style type="text/css">
-
Open a file energy.dat for writing:  
+
<!--
-
: set fil [open energy.dat w]  
+
.combobox {
 +
background-color: #FFFFFF;
 +
color: #808080;
 +
font-size: 10pt;
 +
font-family: verdana;
 +
font-weight: bold;
 +
}
 +
-->
 +
</style>
 +
<form>
 +
<table border="0" width="80" cellspacing="0">
 +
<tr><td width="100%" bgcolor="#000000">
 +
<table border="0" width="100%" cellspacing="0" cellpadding="0">
 +
<tr><td width="100%" background="https://static.igem.org/mediawiki/2009/b/b3/BoxtopA.png"><img border="0" src="11dot.gif" width="19" height="19"></td></tr>
 +
</table>
 +
<table border="0" width="100%" cellspacing="0" cellpadding="3">
 +
<tr><td width="2%" background="https://static.igem.org/mediawiki/2009/b/bd/BoxbackA.png">
 +
<img border="0" src="11dot.gif" width="18" height="18">
 +
</td><td width="98%" background="https://static.igem.org/mediawiki/2009/6/6e/BoxbackB.png">
 +
<select class="combobox" name="SiteMap" onchange="if(options[selectedIndex].value){location = options[selectedIndex].value}" size="1">
 +
<option selected>Go to:  </option>
 +
<option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Maxwell-Boltzmann_Energy_Distribution">Maxwell-Boltzmann Energy Distribution </option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Energies">Energies</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Temperature_distribution">Temperature distribution</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Density">Density </option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Pressure_as_a_function_of_simulation_time">Pressure</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#RMSD_for_individual_residues">RMSD for individual residues</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#RMSD_of_selected_atoms_compared_to_initial_position_along_time">RMSD of selected atoms</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Salt_bridges">Salt bridges</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#RMSF">RMSF</option>
 +
</select>
 +
</td></tr>
 +
</table>
 +
</td></tr>
 +
</table>
 +
</form></center>
 +
</p>
 +
</div>
 +
</html>
 +
<br>
-
'''3.''' For each atom in the system, calculate the kinetic energy, and write it to a file
+
== Density ==
-
: foreach m [$all get mass] v [$all get {x y z}] {
+
-
: puts $fil [expr 0.5 * $m * [vecdot $v $v] ]
+
-
: }
+
-
Close the file:
+
-
: close $fil
+
 +
<html>
 +
<script type="text/javascript" language="JavaScript"><!--
 +
function HideContent(d) {
 +
document.getElementById(d).style.display = "none";
 +
}
 +
function ShowContent(d) {
 +
document.getElementById(d).style.display = "block";
 +
}
 +
function ReverseDisplay(d) {
 +
if(document.getElementById(d).style.display == "none") { document.getElementById(d).style.display = "block"; }
 +
else { document.getElementById(d).style.display = "none"; }
 +
}
 +
//--></script>
-
All these steps can be avoided by typing in the Terminal Window:
+
<p>
-
: vmd -dispdev text -e get energy.tcl
+
<a href="javascript:ReverseDisplay('hs4')">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Click here to show/hide</a>
 +
</p>
 +
<div id="hs4" style="display:none;">
 +
<p>
-
We now have a file of raw data that can be used to fit the obtained energy distribution to the Maxwell-Boltzmann distribution. The temperature of the distribution can be obtained from that fit.
+
In order to obtain the data for the volume from the log file we will again use the script ''namdstats.tcl'', which was already sourced. Type in a terminal window:
 +
<br><span style="font-family: Courier;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; data_time VOLUME namd_log </span>
 +
<br>It will store each timestep and its corresponding temperature in the file TEMP.dat.
 +
<br><br>
 +
Using EXCEL, we obtain the following graph, which represents the evolution of the density in function of time:
 +
<br><center><img src="https://static.igem.org/mediawiki/2009/e/e7/Density.jpg"></center>
 +
<br>The first part corresponds the the heating, then we let the system reach an equilibrium (NPT state), a NVT portion, and finally a NPT portion again.
 +
<html><center>
 +
<style type="text/css">
 +
<!--
 +
.combobox {
 +
background-color: #FFFFFF;
 +
color: #808080;
 +
font-size: 10pt;
 +
font-family: verdana;
 +
font-weight: bold;
 +
}
 +
-->
 +
</style>
 +
<form>
 +
<table border="0" width="80" cellspacing="0">
 +
<tr><td width="100%" bgcolor="#000000">
 +
<table border="0" width="100%" cellspacing="0" cellpadding="0">
 +
<tr><td width="100%" background="https://static.igem.org/mediawiki/2009/b/b3/BoxtopA.png"><img border="0" src="11dot.gif" width="19" height="19"></td></tr>
 +
</table>
 +
<table border="0" width="100%" cellspacing="0" cellpadding="3">
 +
<tr><td width="2%" background="https://static.igem.org/mediawiki/2009/b/bd/BoxbackA.png">
 +
<img border="0" src="11dot.gif" width="18" height="18">
 +
</td><td width="98%" background="https://static.igem.org/mediawiki/2009/6/6e/BoxbackB.png">
 +
<select class="combobox" name="SiteMap" onchange="if(options[selectedIndex].value){location = options[selectedIndex].value}" size="1">
 +
<option selected>Go to:  </option>
 +
<option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Maxwell-Boltzmann_Energy_Distribution">Maxwell-Boltzmann Energy Distribution </option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Energies">Energies</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Temperature_distribution">Temperature distribution</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Density">Density </option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Pressure_as_a_function_of_simulation_time">Pressure</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#RMSD_for_individual_residues">RMSD for individual residues</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#RMSD_of_selected_atoms_compared_to_initial_position_along_time">RMSD of selected atoms</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Salt_bridges">Salt bridges</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#RMSF">RMSF</option>
 +
</select>
 +
</td></tr>
 +
</table>
 +
</td></tr>
 +
</table>
 +
</form></center>
-
'''1.''' In a Terminal window, type xmgrace. In the xmgrace window, choose the Data → Import → ASCI I menu item. In the Files box, select the file ''energy.dat''. Click on the OK button. You should see a black trace which correspond to the raw data.
+
</p>
 +
</div>
 +
</html>
 +
<br>
 +
== Pressure as a function of simulation time ==
-
'''2.''' To look at the distribution of points, we will make a histogram of this data. Choose the Data → Transformations → Histograms menu item. In the Source → Set window, click on the first line, in order to make a histogram of the data just loaded.  
+
<html>
 +
<script type="text/javascript" language="JavaScript"><!--
 +
function HideContent(d) {
 +
document.getElementById(d).style.display = "none";
 +
}
 +
function ShowContent(d) {
 +
document.getElementById(d).style.display = "block";
 +
}
 +
function ReverseDisplay(d) {
 +
if(document.getElementById(d).style.display == "none") { document.getElementById(d).style.display = "block"; }
 +
else { document.getElementById(d).style.display = "none"; }
 +
}
 +
//--></script>
-
Click on the Normalize option.
+
<p>
 +
<a href="javascript:ReverseDisplay('hs5')">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Click here to show/hide</a>
 +
</p>
-
Fill in Start: 0, Stop at: 10, and # of bins: 100, and Apply.
+
<div id="hs5" style="display:none;">
 +
<p>
-
[[Image:Non_linear_curve_fitting.jpg|300px|center]]
+
In order to obtain the data for the pressure from the log file we will again use the script <i>namdstats.tcl</i>, which has been updated for the occasion.
 +
<br>The file can be found <a href="https://static.igem.org/mediawiki/2009/6/67/Namdstats_igem09.txt"> here </a>. Please rename to namdstats<b>.tcl</b> after download.
 +
<br><br>
 +
Here are the steps to use this script:
 +
<br><span style="font-family: Courier;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; source namdstats.tcl
 +
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; data_time DATA_NAME LOG_FILE </span>
 +
<br>It will extract data from LOG_FILE, creating a DATA_NAME.dat containing values and time informations.
 +
<br><br>
 +
Available DATA_NAME can be: BOND, ANGLE, DIHED, IMPRP, ELECT, VDW, BOUNDARY, MISC, KINETIC, TOTAL, TEMP, TOTAL2, TOTAL3, TEMPAVG, PRESSURE, GPRESSURE, VOLUME, PRESSAVG, GPRESSAVG.
 +
<br><br>
 +
So, to extract pressure from our first simulation, the command is: data_time PRESSURE namd_log
 +
<br><br>
 +
Here is a small plot of pressure and temperature in function of time
 +
<img src="https://static.igem.org/mediawiki/2009/f/f9/1st_run.jpg">
 +
<html><center>
 +
<style type="text/css">
 +
<!--
 +
.combobox {
 +
background-color: #FFFFFF;
 +
color: #808080;
 +
font-size: 10pt;
 +
font-family: verdana;
 +
font-weight: bold;
 +
}
 +
-->
 +
</style>
 +
<form>
 +
<table border="0" width="80" cellspacing="0">
 +
<tr><td width="100%" bgcolor="#000000">
 +
<table border="0" width="100%" cellspacing="0" cellpadding="0">
 +
<tr><td width="100%" background="https://static.igem.org/mediawiki/2009/b/b3/BoxtopA.png"><img border="0" src="11dot.gif" width="19" height="19"></td></tr>
 +
</table>
 +
<table border="0" width="100%" cellspacing="0" cellpadding="3">
 +
<tr><td width="2%" background="https://static.igem.org/mediawiki/2009/b/bd/BoxbackA.png">
 +
<img border="0" src="11dot.gif" width="18" height="18">
 +
</td><td width="98%" background="https://static.igem.org/mediawiki/2009/6/6e/BoxbackB.png">
 +
<select class="combobox" name="SiteMap" onchange="if(options[selectedIndex].value){location = options[selectedIndex].value}" size="1">
 +
<option selected>Go to:  </option>
 +
<option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Maxwell-Boltzmann_Energy_Distribution">Maxwell-Boltzmann Energy Distribution </option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Energies">Energies</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Temperature_distribution">Temperature distribution</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Density">Density </option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Pressure_as_a_function_of_simulation_time">Pressure</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#RMSD_for_individual_residues">RMSD for individual residues</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#RMSD_of_selected_atoms_compared_to_initial_position_along_time">RMSD of selected atoms</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Salt_bridges">Salt bridges</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#RMSF">RMSF</option>
 +
</select>
 +
</td></tr>
 +
</table>
 +
</td></tr>
 +
</table>
 +
</form></center>
-
'''3.''' The plot has been created, but cannot be seen yet. Use the right button of the mouse to click on the first set (in the Source → Set window).
+
</p>
-
Click on Hide. Now, go to the main Grace window and click on the button labeled AS: it will resize the plot to fit the existing values. This is the distribution of energies.
+
</div>
 +
</html>
 +
<br>
-
Now, we will fit a Maxwell-Boltzmann distribution to this plot and find out the temperature that the distribution corresponds to.
+
==RMSD for individual residues==
 +
<html>
 +
<script type="text/javascript" language="JavaScript"><!--
 +
function HideContent(d) {
 +
document.getElementById(d).style.display = "none";
 +
}
 +
function ShowContent(d) {
 +
document.getElementById(d).style.display = "block";
 +
}
 +
function ReverseDisplay(d) {
 +
if(document.getElementById(d).style.display == "none") { document.getElementById(d).style.display = "block"; }
 +
else { document.getElementById(d).style.display = "none"; }
 +
}
 +
//--></script>
-
'''4.''' Choose the Data → Transformations → Non-linear curve fitting menu item. In the Source → Set window, click on the last line, which corresponds to the histogram you created.
+
<p>
 +
<a href="javascript:ReverseDisplay('hs6')">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Click here to show/hide</a>
 +
</p>
-
In the Main tab, type in the Formula window:  
+
<div id="hs6" style="display:none;">
-
: y = (2/ sqrt(Pi * a0 ∧3 )) * sqrt(x) * exp (-x / a0)
+
<p>
-
This will fit the curve and get a fit for the parameter a0, which corresponds to kB T in units of kcal/mol.
+
-
[[Image: Boltzmann.png |300px| center ]]
+
 +
We aim at finding the average RMSD over time for each residue in the protein using VMD.
 +
<br>
 +
<b>1.</b> We load the <i>.psf</i> and <i>.dcd</i> files obtained after the first round of simulation.
 +
<br><br>
 +
<b>2.</b> In the TkCon window type:
 +
<br><span style="font-family: Courier;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; source residue_rmsd.tcl
 +
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; set sel_resid [[atomselect top "protein and alpha"] get resid] </span>
 +
<br>
 +
<br>This will get all the residues number of all alpha-carbons in the protein. Since there is just one and only one α-carbon per residue, it is a good option.
 +
<br><br>
 +
<b>3.</b> Now we will calculate the RMSD values of all atoms in the newly created selection:
 +
<br><span style="font-family: Courier;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; rmsd_residue_over_time top $sel resid </span>
 +
<br>At the end of the calculation, we have a list of the avergae RMSD per residue (in the file residue_rmsd.dat)
 +
<br>
 +
<br><b>Remark</b>: we updated <a href="https://static.igem.org/mediawiki/2009/1/1f/Residue_rmsd_v2.txt"> the script residue_rmsd.tcl</a> to be able to specify on which frames the rsmd has to be computed. Please have a look on this wiki for a more up-to-date version of the file... Command is:
 +
<br><span style="font-family: Courier;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; rmsd_residue_over_time top $sel resid FIRST_FRAME LAST_FRAME </span>
 +
<br><br>
 +
<b>4.</b> In VMD, in Graphics → Representations, do the following actions:
 +
<ul>
 +
<li> create two replicates: protein and resname FMN in selected atoms
 +
<li> for the FMN, choose CPK as a drawing method
 +
<li> for the protein, choose tube as drawing method, and <i>user</i> as coloring method. Now click on the Trajectory tab, and in the Color Scale Data Range, type 0.40 and 1.00.
 +
</ul><br><center>
 +
<img src="https://static.igem.org/mediawiki/2009/thumb/d/dd/Vmd_color.png/200px-Vmd_color.png"></center>
 +
<br><br>
 +
The protein is colored according to its average RMSD values. The residues displayed in blue are more mobile while the ones in red move less.
 +
<br><br>
 +
Here is a movie with the protein colored according to average RMSD values: <a href="https://static.igem.org/mediawiki/2009/4/4d/Moving_residue.mov"> video </a>
 +
<br>
-
'''5.''' In the Parameters drop-down menu, choose 1.  You can give an initial value to A0, so that the iterations will look for a value in the vicinity of your initial guess. In the A0 window, type 0.6, which in kcal/mol corresponds to a temperature of ∼ 300K.
+
<br><br>
 +
<b>5.</b> Now we can plot the RMSD value per residue by typing in a Terminal window :
 +
<br><span style="font-family: Courier;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; xmgrace residue rmsd.dat </span>
 +
<br>We obtain the following picture:
 +
<br>
 +
<img src="https://static.igem.org/mediawiki/2009/thumb/c/cc/RMSD_CA_per_res.jpg/700px-RMSD_CA_per_res.jpg">
 +
<br>
-
[[Image:A0.jpg |350px|center]]
+
<hr/>
 +
<p align="center"><big> <b>RMSD of residue within 3 angström of the FMN</b> </big></p>
-
Click on the Apply button. This will open a window with the new value for a0, as well as some statistical measures, including the Correlation Coefficient, which is a measure of the fit.
+
<img src="https://static.igem.org/mediawiki/2009/6/6c/Resid_3A.jpg">
 +
<br><br>
 +
We can see that the residues that move the most are the residue number: 425, 451, 453
-
[[Image:Correlation_coefficient.jpg|350px| center]]
+
<br><br>
-
The value of a0 obtained corresponds to kB T . Obtain the temperature T for this distribution with kB = 0.00198657 kcal
+
<hr/>
-
/mol /K.
+
<p align="center"><big> <b>RMSD of residue within 6 angström of the FMN</b> </big></p>
 +
<img src="https://static.igem.org/mediawiki/2009/3/3e/Resid_6A.jpg">
 +
<br>
 +
We can see that the residues that move the most are the residue number:  424, 425, 464, 468
 +
<br>
-
We obtwain the following histogramm!
 
-
[[Image:Maxwell-Boltzmann Energy Distribution.jpg|center]]
 
-
 
-
<html>
 
  <p align="center" class="style1"><a href="#top"><img src="https://static.igem.org/mediawiki/2009/thumb/0/06/Up_arrow.png/50px-Up_arrow.png" alt="Back to top" border="0"></a><br></p>
  <p align="center" class="style1"><a href="#top"><img src="https://static.igem.org/mediawiki/2009/thumb/0/06/Up_arrow.png/50px-Up_arrow.png" alt="Back to top" border="0"></a><br></p>
-
</html>
 
<br>
<br>
-
== Energies ==
+
<html><center>
-
Here we will calculate the averages of the various energies (kinetic and the different internal energies: bonded (bonds,
+
<style type="text/css">
-
angles and dihedrals) and non-bonded (electrostatic, van der Waals)) over the course of a simulation.
+
<!--
 +
.combobox {
 +
background-color: #FFFFFF;
 +
color: #808080;
 +
font-size: 10pt;
 +
font-family: verdana;
 +
font-weight: bold;
 +
}
 +
-->
 +
</style>
 +
<form>
 +
<table border="0" width="80" cellspacing="0">
 +
<tr><td width="100%" bgcolor="#000000">
 +
<table border="0" width="100%" cellspacing="0" cellpadding="0">
 +
<tr><td width="100%" background="https://static.igem.org/mediawiki/2009/b/b3/BoxtopA.png"><img border="0" src="11dot.gif" width="19" height="19"></td></tr>
 +
</table>
 +
<table border="0" width="100%" cellspacing="0" cellpadding="3">
 +
<tr><td width="2%" background="https://static.igem.org/mediawiki/2009/b/bd/BoxbackA.png">
 +
<img border="0" src="11dot.gif" width="18" height="18">
 +
</td><td width="98%" background="https://static.igem.org/mediawiki/2009/6/6e/BoxbackB.png">
 +
<select class="combobox" name="SiteMap" onchange="if(options[selectedIndex].value){location = options[selectedIndex].value}" size="1">
 +
<option selected>Go to:  </option>
 +
<option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Maxwell-Boltzmann_Energy_Distribution">Maxwell-Boltzmann Energy Distribution </option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Energies">Energies</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Temperature_distribution">Temperature distribution</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Density">Density </option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Pressure_as_a_function_of_simulation_time">Pressure</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#RMSD_for_individual_residues">RMSD for individual residues</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#RMSD_of_selected_atoms_compared_to_initial_position_along_time">RMSD of selected atoms</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Salt_bridges">Salt bridges</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#RMSF">RMSF</option>
 +
</select>
 +
</td></tr>
 +
</table>
 +
</td></tr>
 +
</table>
 +
</form></center>
 +
</p>
 +
</div>
 +
</html>
 +
<br>
-
'''1.''' We start with a file obtained from NAMD: http://www.ks.uiuc.edu/Research/namd/utilities/ and download ''namdstat.tcl''
+
== RMSD of selected atoms compared to initial position along time ==
 +
<html>
 +
<script type="text/javascript" language="JavaScript"><!--
 +
function HideContent(d) {
 +
document.getElementById(d).style.display = "none";
 +
}
 +
function ShowContent(d) {
 +
document.getElementById(d).style.display = "block";
 +
}
 +
function ReverseDisplay(d) {
 +
if(document.getElementById(d).style.display == "none") { document.getElementById(d).style.display = "block"; }
 +
else { document.getElementById(d).style.display = "none"; }
 +
}
 +
//--></script>
-
'''2.''' In the VMD TkCon window, type
+
<p>
-
: source namdstats.tcl
+
<a href="javascript:ReverseDisplay('hs7')">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Click here to show/hide</a>
-
: data avg ../2v0w_hydr_wb_eq.log 101 last
+
</p>
-
The second line will call a procedure which will calculate the average for all output variables in the log file from the first logged timestep after 101 to the end of the simulation.
+
 +
<div id="hs7" style="display:none;">
 +
<p>
-
== Temperature distribution ==
+
<b>This script was highly updated, please go to the <a href="https://2009.igem.org/Team:EPF-Lausanne/Scripts">script page</a> if you encounter a problem!!!
-
Objective: Simulate our protein in an NVE ensemble, and analyze the temperature distribution.  
+
-
In order to obtain the data for the temperature from the log file we will again use the script ''namdstats.tcl'', which was already sourced. Type in a terminal window:
+
<br>Selections are not precise here!</b>
-
: data_time TEMP namd_log
+
<br><br>
-
It will store each timestep and its corresponding temperature in the file TEMP.dat.
+
 +
We made a small TCL script to calculate RMSD from selected atoms compared to their initial position along timestep.
 +
The file can be found <a href="https://static.igem.org/mediawiki/2009/a/ad/Residue_rmsd_igem09.txt">here</a>. Please rename to Residue_rmsd_igem09<b>.tcl</b> after download.
 +
<br><br>
 +
Example to run the script:
 +
<br><span style="font-family: Courier;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;load ''.dcd'' + ''.psf'' on VMD
 +
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;source residue_rmsd_igem09.tcl
 +
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;set sel_resid [[atomselect top "protein and alpha"] get resid]
 +
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;rmsd_residue_over_time top $sel_resid 0 0  </span>
 +
<br><br>
 +
We tried to select only backbone from protein + FMN → change
 +
<br><span style="font-family: Courier;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<i>set sel_resid [[atomselect top "backbone"] get resid] </i></span>
 +
<br><br>
 +
<b>The script was updated to be able to define reference frame and first frame were RMSD will be calculated.</b> We usually don't need to compute RMSD during heating, for instance. RMSD takes a lot of time. In our first run 1 frame = 100 timesteps * 2 fs*timesteps^-1 = 200 fs
 +
<br><br>
 +
complete form for run is:
 +
<br><span style="font-family: Courier;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <i>rmsd_residue_over_time top $sel_resid FIRST_FRAME REFERENCE_FRAME</i></span>
 +
<br><br>
 +
For our first run, if we want to select only the 295°K NPT plateau, and set its first frame as reference, we have to launch:
 +
<br><span style="font-family: Courier;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<i>rmsd_residue_over_time top $sel_resid 1115 1115</i></span>
 +
<br><br>
 +
Here is how the script processes:
 +
<ul>
 +
<li>calculate how many frames are in .dcd
 +
<li>for each timestep, the script aligns (best fit) the backbone of the protein to the eference position to minimize RMDS. (Test: "and not mass 1,008000" == and noh was added in selection to remove hydrogen)
 +
<li>for each residue (selected by sel_resid), RMSD is computed and the sum of all RMSD (one for each residue) is stored for current timestep
 +
<li>script's output is data_rmsd.dat
 +
</ul>
 +
<br><br>
-
Using EXCEL, we obtain the following graph, which represents the evolution of the temperature in function of time:
+
Here is a fast graph of the output of the average RMSD of the atoms in function of time. It seems normal.
-
[[Image:Temp(t).png|center]]
+
<br><img src="https://static.igem.org/mediawiki/2009/b/bd/Rmsd.jpg">
-
The first part corresponds the the heating, then we let the system reach an equilibrium (NPT state), a NVT portion, and finally a NPT portion again.
+
<br><br><br>
 +
Here is what we got with FIRST_FRAME=1115 REFERENCE_FRAME=1115. Average=921.477, standard deviation=202.1708
 +
<br><img src="https://static.igem.org/mediawiki/2009/2/2c/RMSD_plateau.jpg">
 +
<br><br><br>
-
== Pressure as a function of simulation time ==
+
FIRST_FRAME=0 REFERENCE_FRAME=0. The difference of the sum probably comes from the new selection of atoms from the backbone. <b>We should compute an average value to normalize amplitude</b>. (fluctuation is conserved, anyway) Average=781.3913, standard deviation=118.1393
 +
<br><img src="https://static.igem.org/mediawiki/2009/6/67/RMSD_COMPLETE_RUN.jpg">
-
In order to obtain the data for the pressure from the log file we will again use the script ''namdstats.tcl'', which has been updated for the occasion.
+
<html>
-
The file can be found [[Media:Namdstats_igem09.txt|here.]] Please rename to namdstats'''.tcl''' after download.
+
<p align="center" class="style1"><a href="#top"><img src="https://static.igem.org/mediawiki/2009/thumb/0/06/Up_arrow.png/50px-Up_arrow.png" alt="Back to top" border="0"></a><br></p>
 +
</html>
 +
<br>
-
Here are the steps to use this script:
+
<html><center>
-
: source namdstats.tcl
+
<style type="text/css">
-
: data_time DATA_NAME LOG_FILE
+
<!--
-
It will extract data from LOG_FILE, creating a DATA_NAME.dat containing values and time informations.
+
.combobox {
 +
background-color: #FFFFFF;
 +
color: #808080;
 +
font-size: 10pt;
 +
font-family: verdana;
 +
font-weight: bold;
 +
}
 +
-->
 +
</style>
 +
<form>
 +
<table border="0" width="80" cellspacing="0">
 +
<tr><td width="100%" bgcolor="#000000">
 +
<table border="0" width="100%" cellspacing="0" cellpadding="0">
 +
<tr><td width="100%" background="https://static.igem.org/mediawiki/2009/b/b3/BoxtopA.png"><img border="0" src="11dot.gif" width="19" height="19"></td></tr>
 +
</table>
 +
<table border="0" width="100%" cellspacing="0" cellpadding="3">
 +
<tr><td width="2%" background="https://static.igem.org/mediawiki/2009/b/bd/BoxbackA.png">
 +
<img border="0" src="11dot.gif" width="18" height="18">
 +
</td><td width="98%" background="https://static.igem.org/mediawiki/2009/6/6e/BoxbackB.png">
 +
<select class="combobox" name="SiteMap" onchange="if(options[selectedIndex].value){location = options[selectedIndex].value}" size="1">
 +
<option selected>Go to:  </option>
 +
<option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Maxwell-Boltzmann_Energy_Distribution">Maxwell-Boltzmann Energy Distribution </option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Energies">Energies</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Temperature_distribution">Temperature distribution</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Density">Density </option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Pressure_as_a_function_of_simulation_time">Pressure</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#RMSD_for_individual_residues">RMSD for individual residues</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#RMSD_of_selected_atoms_compared_to_initial_position_along_time">RMSD of selected atoms</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Salt_bridges">Salt bridges</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#RMSF">RMSF</option>
 +
</select>
 +
</td></tr>
 +
</table>
 +
</td></tr>
 +
</table>
 +
</form></center>
-
Available DATA_NAME can be: BOND, ANGLE, DIHED, IMPRP, ELECT, VDW, BOUNDARY, MISC, KINETIC, TOTAL, TEMP, TOTAL2, TOTAL3, TEMPAVG, PRESSURE, GPRESSURE, VOLUME, PRESSAVG, GPRESSAVG.
+
</p>
 +
</div>
 +
</html>
 +
<br>
-
So, to extract pressure from our first simulation, the command is: data_time PRESSURE namd_log
+
==Salt bridges==
 +
<html>
 +
<script type="text/javascript" language="JavaScript"><!--
 +
function HideContent(d) {
 +
document.getElementById(d).style.display = "none";
 +
}
 +
function ShowContent(d) {
 +
document.getElementById(d).style.display = "block";
 +
}
 +
function ReverseDisplay(d) {
 +
if(document.getElementById(d).style.display == "none") { document.getElementById(d).style.display = "block"; }
 +
else { document.getElementById(d).style.display = "none"; }
 +
}
 +
//--></script>
-
Here is a small plot of pressure and temperature in function of time
+
<p>
-
[[Image:1st_run.jpg|center]]
+
<a href="javascript:ReverseDisplay('hs8')">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Click here to show/hide</a>
 +
</p>
 +
<div id="hs8" style="display:none;">
 +
<p>
 +
As we wanted to redo the analysis from Schulten's article, we looked for salt bridges. VMD can easily compute this, it even propose an easy GUI. Standard configuration is just fine for now. You'll have a log file containing the list of nitrogen-oxygen susceptible of forming a salt bridge. You'll also get a file for each bridge containing the distance between both atoms along the simulation.
 +
<br><br>
 +
In the light state, we have 9 salt bridges witin the protein and 12 if we consider the protein and the flavin (use "protein or resname FMN" as selection).
 +
<br>
 +
<br><span style="font-family: Courier;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ASP471-ARG467
 +
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;GLU409-ARG442
 +
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;FMN450-FMN450
 +
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ASP540-LYS544
 +
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ASP432-ARG442
 +
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>FMN450-ARG451</b>
 +
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;GLU457-LYS489
 +
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;GLU444-LYS485
 +
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ASP522-ARG521
 +
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ASP424-ARG451
 +
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;GLU475-LYS533
 +
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>FMN450-ARG467</b></span>
 +
<br><br>
 +
Here is a plot for one of the bridges. We have to look for the max distance for a salt bridge.
 +
<img src="https://static.igem.org/mediawiki/2009/2/2a/Salt_bridge.jpg">
-
== RMSD of selected atoms compared to initial position along time ==
+
<html>
 +
<p align="center" class="style1"><a href="#top"><img src="https://static.igem.org/mediawiki/2009/thumb/0/06/Up_arrow.png/50px-Up_arrow.png" alt="Back to top" border="0"></a><br></p>
 +
</html>
-
We made a small TCL script to calculate RMSD from selected atoms compared to their initial position along timestep.
+
<html><center>
-
The file can be found [[Media:Residue_rmsd_igem09.txt|here.]] Please rename to Residue_rmsd_igem09'''.tcl''' after download.
+
<style type="text/css">
 +
<!--
 +
.combobox {
 +
background-color: #FFFFFF;
 +
color: #808080;
 +
font-size: 10pt;
 +
font-family: verdana;
 +
font-weight: bold;
 +
}
 +
-->
 +
</style>
 +
<form>
 +
<table border="0" width="80" cellspacing="0">
 +
<tr><td width="100%" bgcolor="#000000">
 +
<table border="0" width="100%" cellspacing="0" cellpadding="0">
 +
<tr><td width="100%" background="https://static.igem.org/mediawiki/2009/b/b3/BoxtopA.png"><img border="0" src="11dot.gif" width="19" height="19"></td></tr>
 +
</table>
 +
<table border="0" width="100%" cellspacing="0" cellpadding="3">
 +
<tr><td width="2%" background="https://static.igem.org/mediawiki/2009/b/bd/BoxbackA.png">
 +
<img border="0" src="11dot.gif" width="18" height="18">
 +
</td><td width="98%" background="https://static.igem.org/mediawiki/2009/6/6e/BoxbackB.png">
 +
<select class="combobox" name="SiteMap" onchange="if(options[selectedIndex].value){location = options[selectedIndex].value}" size="1">
 +
<option selected>Go to:  </option>
 +
<option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Maxwell-Boltzmann_Energy_Distribution">Maxwell-Boltzmann Energy Distribution </option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Energies">Energies</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Temperature_distribution">Temperature distribution</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Density">Density </option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Pressure_as_a_function_of_simulation_time">Pressure</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#RMSD_for_individual_residues">RMSD for individual residues</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#RMSD_of_selected_atoms_compared_to_initial_position_along_time">RMSD of selected atoms</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#Salt_bridges">Salt bridges</option><option value="https://2009.igem.org/Team:EPF-Lausanne/Analysis#RMSF">RMSF</option>
 +
</select>
 +
</td></tr>
 +
</table>
 +
</td></tr>
 +
</table>
 +
</form></center>
-
Example to run the script:
+
</p>
-
:load ''.dcd'' + ''.psf'' on VMD
+
</div>
-
:source residue_rmsd_igem09.tcl
+
</html>
-
:set sel_resid [[atomselect top "protein and alpha"] get resid]
+
<br>
-
:rmsd_residue_over_time top $sel_resid 0 0
+
-
'''The script was updated to be able to define reference frame and first frame were RMSD will be calculated.''' We usually don't need to compute RMSD during heating, for instance. RMSD takes a lot of time. In our first run 1 frame = 100 timesteps * 2 fs*timesteps^-1 = 200 fs
+
==RMSF==
 +
<html>
 +
<script type="text/javascript" language="JavaScript"><!--
 +
function HideContent(d) {
 +
document.getElementById(d).style.display = "none";
 +
}
 +
function ShowContent(d) {
 +
document.getElementById(d).style.display = "block";
 +
}
 +
function ReverseDisplay(d) {
 +
if(document.getElementById(d).style.display == "none") { document.getElementById(d).style.display = "block"; }
 +
else { document.getElementById(d).style.display = "none"; }
 +
}
 +
//--></script>
-
complete form for run is:
+
<p>
-
: ''rmsd_residue_over_time top $sel_resid FIRST_FRAME REFERENCE_FRAME''
+
<a href="javascript:ReverseDisplay('hs9')">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Click here to show/hide</a>
 +
</p>
-
For our first run, if we want to select only the 295°K NPT plateau, and set its first frame as reference, we have to launch:
+
<div id="hs9" style="display:none;">
-
: ''rmsd_residue_over_time top $sel_resid 1115 1115''
+
<p>
-
Here is how the script processes:
+
After changing the script [see <a href="https://2009.igem.org/Team:EPF-Lausanne/Scripts#RMSF_from_namd_.dcd"> here</a>], we perform an interesting analysis from these 2 files. First, we have to correct the RMSF, that can be linked to beta factor using this equation:
-
*calculate how many frames are in .dcd
+
<br><center><img src="https://static.igem.org/mediawiki/2009/4/4c/Beta_rmsf.jpg"></center>
-
*for each timestep, the script aligns (best fit) the protein + FMN to the initial position to minimize RMDS. We could remove hydrogen here (Test: "and not mass 1,008000" was added in selection to remove hydrogen)
+
<br>If you plot beta factor and RMSF, you get such a thing.
-
*for each residue (selected by sel_resid), RMSD is computed and the sum of all RMSD (one for each residue) is stored for current timestep
+
<img src="https://static.igem.org/mediawiki/2009/7/71/2v02_1ns_rmsf.jpg">
-
*script's output is data_rmsd.dat
+
<br><br>
 +
This is a 1 nanosecond NPT run at 300°K. We hope to see a RMSF curve identical to the beta factor. It should only be shifted higher because of the increased temperature. But having a similar tendency would mean our simulation show oscillations similar to what was observed during crystallography. This is really a quite nice validation of our run!
-
Here is a fast graph of the output of the average RMSD of the atoms in function of time. It seems normal.
 
-
[[Image:Rmsd.jpg‎|center]]
 
-
 
-
<html>
 
  <p align="center" class="style1"><a href="#top"><img src="https://static.igem.org/mediawiki/2009/thumb/0/06/Up_arrow.png/50px-Up_arrow.png" alt="Back to top" border="0"></a><br></p>
  <p align="center" class="style1"><a href="#top"><img src="https://static.igem.org/mediawiki/2009/thumb/0/06/Up_arrow.png/50px-Up_arrow.png" alt="Back to top" border="0"></a><br></p>
-
</html>
 
<br>
<br>
 +
</p>
 +
</div>
 +
</html>
-
We tried to select only backbone from protein + FMN → change ''set sel_resid [[atomselect top "backbone"] get resid] ''
 
</div><div CLASS="epfl09bouchon"></div>
</div><div CLASS="epfl09bouchon"></div>

Latest revision as of 09:21, 21 September 2009


Analysis of Equilibrium





Scripts

As this page is getting crowded, we created another page to explain all the scripts we wrote. The current page has some kind of step by step tutorials, but if you want fast informations, you better go to the script page.


Tutorials


Maxwell-Boltzmann Energy Distribution

         Click here to show/hide


Energies

         Click here to show/hide


Temperature distribution

         Click here to show/hide


Density

         Click here to show/hide


Pressure as a function of simulation time

         Click here to show/hide


RMSD for individual residues

         Click here to show/hide


RMSD of selected atoms compared to initial position along time

         Click here to show/hide


Salt bridges

         Click here to show/hide


RMSF

         Click here to show/hide