This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong.
Here's the meaning of useful parameters than we can add in the header of our job scripts.
#$ -N NAME = Names our job in the cluster as specified in NAME #$ -q QUEUE = Automatically sends our job to the specified queue in QUEUE, so we don't need to specify it in the qsub command. #$ -M EMAIL = Sends notifications of the job status to the specified address in EMAIL, according to criteria below #$ -m beas = Send you email of job status (b)egin, (e)rror, (a)bort, (s)suspend
Sample header for some script myscript.sh:
#!/bin/csh # #$ -N parsedisco #$ -M rdiazgar@uci.edu #$ -m beas #$ -q ttn.q