Team:EPF-Lausanne/Implementation

From 2009.igem.org

(Difference between revisions)
Line 22: Line 22:
We start from .pdb, .psf, .rtf generated in the previous section. Complete process is on a separate page [[Team:EPF-Lausanne/Modeling/RunSimulation|How to run a simulation]].
We start from .pdb, .psf, .rtf generated in the previous section. Complete process is on a separate page [[Team:EPF-Lausanne/Modeling/RunSimulation|How to run a simulation]].
 +
 +
<html>
 +
<title>liste déroulante dynamique</title>
 +
<head>
 +
<script language="Javascript" type="text/javascript" >
 +
function choix(formulaire)
 +
{
 +
var j;
 +
var i = formulaire.boite1.selectedIndex;
 +
if (i == 0)
 +
for(j = 1; j <3; j++)
 +
formulaire.boite2.options[j].text="";
 +
 +
 +
else{
 +
switch (i){
 +
case 1 : var text = new Array( "Marseille","PSG","Monaco");
 +
break;
 +
case 2 : var text = new Array("Toulouse","Agen","Paris");
 +
break;
 +
 +
case 3 : var text = new Array("Dijon","Pau","Gravelines");
 +
break;
 +
}
 +
 +
for(j = 0; j<3; j++)
 +
formulaire.boite2.options[j+1].text=text[j];
 +
}
 +
formulaire.boite2.selectedIndex=0;
 +
}
 +
</script>
 +
</head>
 +
<body>
 +
<form name="formulaire">
 +
<select name="boite1" onChange="choix(this.form)">
 +
<option selected>...........Choisissez une rubrique...........</option>
 +
<option>foot</option>
 +
<option>rugby</option>
 +
<option>basket</option>
 +
 +
</select>
 +
 +
<select name="boite2">
 +
<option selected>...........Choisissez une rubrique...........</option>
 +
<option></option>
 +
<option></option>
 +
<option></option>
 +
</form>
 +
</select>
 +
</body>
 +
</html>
</div><div CLASS="epfl09bouchon"></div>
</div><div CLASS="epfl09bouchon"></div>

Revision as of 09:00, 28 July 2009

Contents

Implementation of the simulation




LOV domains are the light-sensitive portion of phototropins. They absorb light through a flavin cofactor, photo-chemicaly form a covalent bond between the chromophore and a cysteine residue in the protein, and proceed to mediate activation of an attached kinase domain.

Generating input files

First we need a compatible .pdb in addition to parameter and topology files. Steps to generate all the input files are explained in detail on this page How to generate input files. This is a kind of summary of the tuto.

.conf parameters

We should explain here what are the keywords we use in the .conf.

Run a complete simulation

We start from .pdb, .psf, .rtf generated in the previous section. Complete process is on a separate page How to run a simulation.


liste déroulante dynamique