Hoffman2:Submit job (tcsh): Difference between revisions

From Center for Cognitive Neuroscience
Jump to navigation Jump to search
No edit summary
mNo edit summary
 
(3 intermediate revisions by the same user not shown)
Line 12: Line 12:
#$ -m bea
#$ -m bea


# load the job environment:
# Load the job environment:
source /u/local/Modules/default/init/modules.csh
source /u/local/Modules/default/init/modules.csh
module use /u/project/CCN/apps/modulefiles
module use /u/project/CCN/apps/modulefiles
# Load the FSL module
module load fsl
module load fsl


Line 21: Line 23:
setenv NO_FSL_JOBS true
setenv NO_FSL_JOBS true


# Your script content goes here...
# Your script content goes here...</nowiki>
</nowiki>

Latest revision as of 19:20, 29 November 2017

Back to all things Hoffman2

#!/bin/tcsh
#$ -cwd
# error = Merged with joblog
#$ -o joblog.$JOB_ID
#$ -j y
#$ -pe shared 2
#$ -l h_rt=8:00:00,h_data=4G
# Email address to notify
#$ -M $USER@mail
# Notify when
#$ -m bea

# Load the job environment:
source /u/local/Modules/default/init/modules.csh
module use /u/project/CCN/apps/modulefiles

# Load the FSL module
module load fsl

# This is optional
# More info here: https://www.ccn.ucla.edu/wiki/index.php/Hoffman2:FSL 
setenv NO_FSL_JOBS true

# Your script content goes here...