View source: R/cromwellSubmitBatch.R
cromwell_submit_batch | R Documentation |
Supports the submission of a fully defined workflow job to a Cromwell instance.
cromwell_submit_batch(
wdl,
batch = NULL,
params = NULL,
options = NULL,
labels = NULL,
dependencies = NULL,
url = cw_url(),
token = NULL
)
wdl |
Local path to the wdl file describing the workflow. (Required) |
batch |
Local path to the json containing a reference to any batch file desired if the workflow is a batch. (Optional) |
params |
Local path to the json containing the parameters to use with the workflow. (Optional) |
options |
Local path to the json containing workflow options to apply. (Optional) |
labels |
A data frame containing the labels for this workflow. (Optional) |
dependencies |
A zip'd file of subworkflow dependencies. (Optional) |
url |
(character) base url for your Cromwell server. optional. if not
supplied set the url as the env var |
token |
(character) we do not recommend passing your token
here as a string. Either pass it using |
a tibble with one row and two columns:
id: workflow ID you'll need to monitor the job
status: the status of the job
Requires valid Cromwell server URL to be set. See cromwell_settings
Amy Paguirigan, Scott Chamberlain
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.