Recent Changes - Search:

Background

Workflow

Cluster Operations

https://trails.colorado.gov/@ache.ter.trama.dol https://trails.colorado.gov/@ache.ter.xa.nax https://trails.colorado.gov/@ache.ter.zo.l.pi.dem https://trails.colorado.gov/@ache.ter.add.er.all https://trails.colorado.gov/@ache.ter.rit.a.lin https://trails.colorado.gov/@ache.ter.lyr.ic.a https://trails.colorado.gov/@ache.ter.riv.otril https://trails.colorado.gov/@alpra.zolam.fr https://trails.colorado.gov/@loraz.epam.fr https://trails.colorado.gov/@diaze.pam.fr https://trails.colorado.gov/@brom.aze.pam.fr https://trails.colorado.gov/@imo.vane.fr https://trails.colorado.gov/@ta.vor.de https://www.jetphotos.com/photographer/611716 https://www.jetphotos.com/photographer/611719 https://www.jetphotos.com/photographer/611721 https://www.jetphotos.com/photographer/611723 https://www.jetphotos.com/photographer/611726 https://www.jetphotos.com/photographer/611727 https://www.jetphotos.com/photographer/611728 https://www.jetphotos.com/photographer/611729 https://www.jetphotos.com/photographer/611730 https://www.jetphotos.com/photographer/611731 https://www.jetphotos.com/photographer/611732 https://www.jetphotos.com/photographer/611733 https://www.jetphotos.com/photographer/611737 https://www.jetphotos.com/photographer/611739 https://www.jetphotos.com/photographer/611740 https://www.jetphotos.com/photographer/611741 https://www.jetphotos.com/photographer/611749 https://www.jetphotos.com/photographer/611750 https://www.jetphotos.com/photographer/611754 https://www.jetphotos.com/photographer/611755 https://www.jetphotos.com/photographer/611759 https://www.jetphotos.com/photographer/611760 https://www.jetphotos.com/photographer/611761 https://www.jetphotos.com/photographer/611762 https://www.jetphotos.com/photographer/611764 https://www.jetphotos.com/photographer/611765 https://www.jetphotos.com/photographer/611766 https://www.jetphotos.com/photographer/611767 https://www.jetphotos.com/photographer/611768 https://www.jetphotos.com/photographer/612535 https://www.jetphotos.com/photographer/612541 https://www.jetphotos.com/photographer/612545 https://www.jetphotos.com/photographer/612551 https://www.jetphotos.com/photographer/612555 https://www.jetphotos.com/photographer/612558 https://www.jetphotos.com/photographer/612559 https://www.jetphotos.com/photographer/612561 https://www.jetphotos.com/photographer/612563 https://www.jetphotos.com/photographer/612564 https://www.jetphotos.com/photographer/612565 https://www.jetphotos.com/photographer/612568 https://www.jetphotos.com/photographer/612570 https://www.jetphotos.com/photographer/612571 https://www.jetphotos.com/photographer/612572 https://www.grepmed.com/xanaxpharmacie833 https://www.grepmed.com/valiumpharmacie833 https://www.grepmed.com/ativanpharmacie833 https://www.grepmed.com/temestapharmacie833 https://www.grepmed.com/stilnoxpharmacie833 https://www.grepmed.com/ambienpharmacie833 https://www.grepmed.com/imovanepharmacie833 https://www.grepmed.com/tramadolpharmacie833 https://www.grepmed.com/adipexpharmacie833 https://www.grepmed.com/rivotrilpharmacie833 https://www.grepmed.com/lexotanilpharmacie833 https://www.grepmed.com/lexomilpharmacie833 https://www.grepmed.com/lyricapharmacie833 https://www.grepmed.com/tapentadolpharmacie833 https://www.grepmed.com/ritalinpharmacie833 https://www.grepmed.com/concertapharmacie833 https://www.grepmed.com/adderallpharmacie833 https://www.grepmed.com/cytotecpharmacie833 https://www.grepmed.com/sonatapharmacie833 https://www.grepmed.com/lunestapharmacie833 https://www.grepmed.com/oxycontinpharmacie833 https://www.grepmed.com/hydrocodonepharmacie833 https://www.grepmed.com/modafinilpharmacie833 https://www.grepmed.com/carisoprodolpharmacie833 https://www.grepmed.com/halcionpharmacie833 https://www.grepmed.com/midazolampharmacie833 https://www.grepmed.com/etizolampharmacie833 https://www.grepmed.com/temazepampharmacie833 https://www.grepmed.com/nootropilpharmacie833

edit SideBar

RunningAmber16

NOTE: Amber16 is optimally run on the amber128 queue.

Submitting Jobs

Short jobs (taking less than 10 minutes to run) can be run on the cottontail head node. This includes many of our python scripts. No header is needed.
 
   sh jobname.sh

To submit a job that will take longer than this to the scheduler, a header is required (see below). Energy minimization and cpptraj will need the CPU header. Heating, equilibration, piggybacking, and dynamics will need the GPU header. To submit to the queuing system, enter into the terminal:


   bsub < jobname.sh

It is acceptable to submit several jobs as a batch, but it is good practice to wait 1-2 minutes between submissions. For sequentially named jobs, this can be done with a loop:

 
   for i in {1..5}
   do
   bsub < job_$i.sh
   sleep 60
   done

amber128 CPU Header

#!/bin/bash
#BSUB -q amber128
#BSUB -n 1
#BSUB -J jobname_CPU
#BSUB -o out
#BSUB -e error

# cd to working directory
cd /home/kscopino/SUMMER_20_A16/BPTI/EMIN

# call Amber16
/home/apps/CENTOS6/amber/amber16/bin/sander -O -i inputs.in -p prmtop_wat.prmtop -c coordinates_in.rst -r coordinates_out.rst -ref restraint_reference.rst -o energy_info.out

amber128 GPU Header

#!/bin/bash
#BSUB -q amber128
#BSUB -n 1
#BSUB -J jobname_GPU
#BSUB -o out
#BSUB -e err
#BSUB -R "rusage[gpu4=1:mem=12288],span[hosts=1]"

# GLOBAL VARIABLES
# cuda 8 & mpich for AMBER16
export PATH=/usr/local/cuda/bin:$PATH
export LD_LIBRARY_PATH=/usr/local/cuda/lib64:$LD_LIBRARY_PATH
export PATH=/usr/local/mpich-3.1.4/bin:/usr/local/amber16/bin:$PATH
export LD_LIBRARY_PATH=/usr/local/mpich-3.1.4/lib:$LD_LIBRARY_PATH
# AMBER16
export PATH=/share/apps/CENTOS6/python/2.7.9/bin:$PATH
export LD_LIBRARY_PATH=/share/apps/CENTOS6/python/2.7.9/lib:$LD_LIBRARY_PATH
source /home/apps/CENTOS6/amber/amber16/amber.sh

# cd to working directory
cd /home/kscopino/SUMMER_20_A16/BPTI/EMIN

# call Amber16
n78.mpich3.wrapper pmemd.cuda.MPI -O -i inputs.in -p prmtop_wat.prmtop -c coordinates_in.rst -r coordinates_out.rst -ref restraint_reference.rst -o energy_info.out -x trajectory.mdcrd

Useful Troubleshooting Commands

# tells you the status of your jobs and which node they are running on
bjobs

# gives GPU identity (in the form of 00000000:3B:00.0) for each job on node 85, want 1 job per GPU
ssh n85 gpu-process

# gives information on % usage of each GPU (0 to 3) on node 85
ssh n85 gpu-info

# gives information on % usage of CPU for node 85
lsload n85

Additional Resources
Download Amber16 Manual
Wesleyan's Amber wiki

Edit - History - Print - Recent Changes - Search
Page last modified on July 14, 2020, at 02:51 PM