Hi everyone!
I have been trying to run my simulation on BRAF server. However the script I am loading is not working. It shows the following error:
'Sbatch : error: This does not look like a batch script. The first
sbatch : error: line must start with #! followed by the path to an interpreter.
sbatch: error : for instance: #!/bin/sh
My script is as follows:
#! /bin/bash
#PBS -l node=1:ppn=12
#PBS -l walltime=120:00:00
#PBS -N conf_24
#PBS -q braf
#PBS -j oe
#PBS -V
#PBS -m n
#PBS -o stdout_file
#PBS -e stderr_file
cd $PBS_O_WORKDIR
export I_MPI_DEVICE=rdma
mpirun -np 16 /apps/gromacs/2020.3/mpich+gcc_10.2.0/gpu/gmx grompp_mpi -f step4.0_minimization.mdp -o conf24.tpr -c step3_input.pdb -r step3_input.gro
mpirun -np 16 /apps/gromacs/2020.3/mpich+gcc_10.2.0/gpu/gmx mdrun_mpi -v -deffnm conf24
Thanks and Regards