File: bali-phy-sge

package info (click to toggle)
bali-phy 4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 15,392 kB
  • sloc: cpp: 120,442; xml: 13,966; haskell: 9,975; python: 2,936; yacc: 1,328; perl: 1,169; lex: 912; sh: 343; makefile: 26
file content (34 lines) | stat: -rwxr-xr-x 966 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/sh

### A script for running bali-phy on the Sun Grid Engine (SGE) ###

#------------------------ qsub options: --------------------#
# -V:         Give the job access to shell environment variables
# -S /bin/sh: Use /bin/sh as the shell for the job.
# -cwd:       Execute the job from the current working directory.
# -N <name>   Specify job name

QSUB_ARGS='-V -S /bin/sh -cwd -N bali-phy -l mem_free=2G'

#------------------ Locate the programs --------------------#
QSUB=$(type -p qsub)
BALI_PHY=$(type -p bali-phy)

if [ ! -x "$BALI_PHY" ] ; then
   echo "bali-phy-sge: I can't find 'bali-phy' to run it!"
   echo 'bali-phy-sge: If it is installed, please add it to your $PATH'
   exit 1
fi

if [ ! -x "$QSUB" ] ; then
   echo "bali-phy-sge: I can't find the program 'qsub' to submit your job!"
   echo "bali-phy-sge: Is the Sun Grid Engine installed?"
   exit 1
fi

#------ start the sampler
exec qsub $QSUB_ARGS <<EOF 
#!/bin/sh
exec $BALI_PHY $@
EOF