qsub_cmd | R Documentation |
Makes qsub command that wraps shell command "script.fn" to send to queue "queue" redirecting output / error etc streams to path prefixed by "jname", optional_args: maximum memory requirements "mem", "jlabel" job label
qsub_cmd(
script.fn,
queue = NULL,
jname = NULL,
jlabel = NULL,
jgroup = NULL,
mem = NULL,
group = NULL,
cwd = NULL,
mc.cores = NULL,
deadline = F,
now = FALSE,
touch_job_out = TRUE,
qprior = 0
)
script.fn |
string shell command to be submitted via bsub |
queue |
string queue destination, specifies destination of the job '-q "destination" ' (default = NULL) |
jname |
string path prefix by 'jname' (default = NULL) |
jlabel |
string job name for '-J "job_name" ' (default = NULL) |
jgroup |
string job_group_name for '-g "job_group_name" ' (default = NULL) |
mem |
integer amount of virtual memory/RAM to use via resource requirement arg '-R "res_req"” (default = NULL) |
group |
string project_name for '-P' (default = NULL) |
cwd |
string pathname to current working directory; -cwd "current_working_directory" (default = NULL) |
mc.cores |
integer number of cores to use (default = 1) |
deadline |
boolean specifies if deadline initiation time used (default = FALSE) |
Marcin Imielinski
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.