MBG wiki | RecentChanges | Blog | 2024-05-18 | 2024-05-17

Showing revision 1

SGE script to start a simple (serial) job on the cluster

To submit a simple serial (ie non-parallel) job on the cluster via SGE do the following :

#!/bin/csh -f
#

#
# The name of the job (Test) ...
#
#$ -N Test

#
# Execute from the current working directory ...
#
#$ -cwd

#
# Standard error and output should go into the current working directory ...
#
#$ -e ./
#$ -o ./

mosrun -L my_program