itmat / rum

RNA-Seq Unified Mapper
http://cbil.upenn.edu/RUM
MIT License
26 stars 4 forks source link

user-specified qsub options #143

Closed nmanik closed 11 years ago

nmanik commented 11 years ago

I found that I had to change SGE.pm, line 217 in RUM-Pipeline-v2.0.3_01

from: my $cmd = "qsub -V -cwd -j y $dir_opt @args 2>&1"; to: my $cmd = "qsub -S /bin/bash -V -cwd -j y $dir_opt @args 2>&1";

as the default shell in my SGE cluster was /bin/csh and the commands in outdir/rum*{proc,preproc}.sh are bash cmds that won't work in csh.

mdelaurentis commented 11 years ago

That's a good point. We can make both of those changes in the next release.