submit: Submit a job to a computing cluster.

Description Usage Arguments Author(s) Examples

Description

Submit a job to a local or remote grid engine automatically.

Usage

1
submit(job, gargs = NULL, sargs = NULL, host = NULL, ...)

Arguments

job

the job you want to submit

gargs

the arguments for the grid engine, as vector of character

sargs

the arguments for the script, as vector of characters

host

the address of the host

...

additional arguments

Author(s)

Simon Dirmeier, simon.dirmeier@bsse.ethz.ch

Examples

1
2
3
4
5
6
7
8
9
## Not run: 
   # submit using a file
   submit(job="/Users/user/file.R", gargs=c("-W4:30", "-M10000", "-n8"))

   # submit using a function
   f <- function() do.fancy.computation()
   submit(job=f, gargs=c("-W4:30", "-M10000", "-n8"))

## End(Not run)

dirmeier/submitr documentation built on May 15, 2019, 8:51 a.m.