Team:EPF-Lausanne/Modeling/RunSimulation

From 2009.igem.org

(Difference between revisions)
(updalpe1linuxsrv1 .epfl.ch (master.cluster))
(updalpe1linuxsrv1 .epfl.ch (master.cluster))
Line 40: Line 40:
Here is a sample:
Here is a sample:
-
:# #!/bin/bash
+
:##!/bin/bash
-
: :# #$ -N igben_64
+
:#$ -N igben_64
-
: #$ -S /bin/bash
+
:#$ -S /bin/bash
-
: #$ -cwd
+
:#$ -cwd
-
: #$ -j y
+
:#$ -j y
-
: #$ -pe mpi 64
+
:#$ -pe mpi 64
-
:source /home/igem/.bashrc
+
:#source /home/igem/.bashrc
-
cd /home/igem/2v0u
+
:#cd /home/igem/2v0u
#iniciate mpd on every node (needed when using intel MPI)
#iniciate mpd on every node (needed when using intel MPI)
-
export MPD_CON_EXT="sge_$JOB_ID.$TASK_ID"
+
:#export MPD_CON_EXT="sge_$JOB_ID.$TASK_ID"
-
sort -u < $TMPDIR/machines > $TMPDIR/mpdhosts
+
:#sort -u < $TMPDIR/machines > $TMPDIR/mpdhosts
-
mpdboot -n 8 -f $TMPDIR/mpdhosts -r ssh
+
:#mpdboot -n 8 -f $TMPDIR/mpdhosts -r ssh
#launch job
#launch job
-
mpiexec -genv I_MPI_FALLBACK_DEVICE 0 -genv I_MPI_DEVICE rdssm  -machinefile $TMPDIR/machines -np 64 /opt/namd/namd2  NPT_simulation_2v0u_64.conf > ./output_sim_64/namd_log
+
:#mpiexec -genv I_MPI_FALLBACK_DEVICE 0 -genv I_MPI_DEVICE rdssm  -machinefile $TMPDIR/machines -np 64 /opt/namd/namd2  NPT_simulation_2v0u_64.conf > ./output_sim_64/namd_log
#terminate mpd at the end of execution
#terminate mpd at the end of execution
-
mpdallexit
+
:#mpdallexit
-
rm -f $TMPDIR/mpdhosts
+
:#rm -f $TMPDIR/mpdhosts

Revision as of 09:56, 14 August 2009

Theory

The .pdb is generated from X-ray diffraction crystallography. This process requires a crystal of the protein, which occurs only at low temperature (~5°K). Taking this in consideration, we have to go through different steps to bring our protein to lab conditions. Please refer to the page on .conf parameters to see how to perform these steps in namd.

Initial minimization

We start with a few minimization rounds, to reach a minimum in the sense of potential energy.

Heating

When the protein is stable, we have to add heat (kinetic energy) to reach a higher temperature (~300°K). We have to take a special care not to add heat too fast, which would result in protein burst and explosion of our system.

First NPT

This is a relaxation step, with the number of atoms N, the pressure P and the temperature T all kept constant (NPT step). This is a kind of homogenization of the distribution of atoms inside our box.

NVT

This is also a relaxation step, with atom number, volume and temperature constant.

Second NPT

Now we perform another relaxation NPT to reach lab conditions.

Final NPT

This is the final NPT, which last much longer and gives us the ouput of the simulation.

Launch the simulation

On a single processor

Here is a safe command. It will send the output to a file (> outpu...) and be run in the background (&).

namd2 CONFIG_FILE.conf > output/namd_log &

On a cluster

This is performed using a library that will split the process between nodes.

updalpe1pc9 .epfl.ch (UPDALPE1PC9)

The path to the binary has to be localized using: which namd2. The option +p4 specifies how many procs we are using (don't ue more than 4 on this cluster!). The rest is similar to single processor launch. We use this computer to visualize or perform small stabilization.

charmrun /usr/local/bin/namd2 +p4 ++local 2v0w_hydr_wb_eq_try.conf > ./output_eq2/namd_log &

updalpe1linuxsrv1 .epfl.ch (master.cluster)

This is the real cluster. We need to create a script to launch the job using the mpi. Here is a sample:

    1. !/bin/bash
  1. $ -N igben_64
  2. $ -S /bin/bash
  3. $ -cwd
  4. $ -j y
  5. $ -pe mpi 64
  1. source /home/igem/.bashrc
  2. cd /home/igem/2v0u
  1. iniciate mpd on every node (needed when using intel MPI)
  1. export MPD_CON_EXT="sge_$JOB_ID.$TASK_ID"
  2. sort -u < $TMPDIR/machines > $TMPDIR/mpdhosts
  3. mpdboot -n 8 -f $TMPDIR/mpdhosts -r ssh
  1. launch job
  1. mpiexec -genv I_MPI_FALLBACK_DEVICE 0 -genv I_MPI_DEVICE rdssm -machinefile $TMPDIR/machines -np 64 /opt/namd/namd2 NPT_simulation_2v0u_64.conf > ./output_sim_64/namd_log
  1. terminate mpd at the end of execution
  1. mpdallexit
  2. rm -f $TMPDIR/mpdhosts