This function submits a set of one or more inputs to cromwell. It
is much more efficient than submitting a single job at a time. See
the
cromwell batch
API documentation for details.
cromwellBatch(wdlSource, workflowInputs, workflowOptions = NULL, timeout = 120, ...)
wdlSource | Represents the
WDL A string
(character vector of length 1) or an
|
---|---|
workflowInputs | A |
workflowOptions | A |
timeout | The number of seconds to wait for a response. Batch jobs can take quite some time for cromwell to process, so this will typically need to be set to a large value to allow for a completed response. |
... | passed directly to httr `POST` (for including `timeouts`, `handles`, etc.) |
If a timeout does not occur (this is pretty common....), then a list that contains the submission status.
TODO details