-
-
Notifications
You must be signed in to change notification settings - Fork 74
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Extra options on SGE #151
Comments
why not just use |
We could use that argument, but it still need more modifications: if params[:qsub_env] == ""
qsub_env = ``
else
evar = params[:qsub_env]
qsub_env = `-v $evar`
end since the option I need doesn't belong to the |
oh, right. and |
yes I think that solution would be much cleaner! |
closed by #153 |
In our cluster in order to run a job on SGE we need to specify an additional option which indicates our group.
I manage to add this by modifying qsub.jl adding the kwarg
opt
:which should be a
Cmd
and can interpolate correctly inqsub_cmd
:`qsub -N $jobname -terse -j y -R y -t 1-$np -V $res_list $queue $qsub_env $opt`
Do you think it makes sense? In case I could prepare a PR. Thanks!
The text was updated successfully, but these errors were encountered: