Skip to content

Instantly share code, notes, and snippets.

@cmaureir
Last active August 29, 2015 14:01
Show Gist options
  • Save cmaureir/3efbcf46fc32e5f4c1cd to your computer and use it in GitHub Desktop.
Save cmaureir/3efbcf46fc32e5f4c1cd to your computer and use it in GitHub Desktop.
Sun Grid Engine (SGE)
#!/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