Last active
August 29, 2015 14:01
-
-
Save cmaureir/3efbcf46fc32e5f4c1cd to your computer and use it in GitHub Desktop.
Sun Grid Engine (SGE)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
$ -r n | |
$ -l h_rt=24:00:00, h=!(<blacklist_node1>| ...) | |
$ -q <queue>.q | |
$ -pe <queue> 60 | |
$ -N <name> | |
$ -m abe | |
$ -cwd | |
$ -R y | |
# Adding modules if it's required | |
# module add X; | |
<executable> <arguments> | |
# To submit: qsub send_sge.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment