#!/bin/bash --login
#$ -cwd -V
#$ -N testjob
#$ -q debug
#$ -l h_rt=24:00:00
#$ -l nodes=1
#$ -pe ib 24

export OMP_NUM_THREADS=1

#$ -o test.log
#$ -e test.err

module load amber

mpirun pmemd.MPI -O -i e.in -c e.min -p e.top -o e.out
