cromwell_jobs | R Documentation |
Requests metadata about Cromwell workflow jobs during a time period specified
cromwell_jobs(
days = 1,
workflow_name = NULL,
workflow_status = NULL,
url = cw_url(),
token = NULL
)
days |
The number of days of history to return, defaults to 1 day. |
workflow_name |
An array of strings of valid workflow names you want in your job list. |
workflow_status |
A array of strings of valid workflow statuses you want in your job list (e.g., submitted, running, succeeded, failed, aborting, aborted) |
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 of metadata on workflow jobs submitted; each row is a different job. columns:
end (dttm)
workflow_id (chr)
metadataArchiveStatus (chr)
workflow_name (chr)
start (dttm)
status (chr)
submission (dttm)
workflowDuration (dbl)
Requires valid Cromwell server URL to be set. See cromwell_settings
Amy Paguirigan, Scott Chamberlain
## Not run:
## Request what jobs have been submitted to your Cromwell instance in the
## past 7 days.
recentJobs <- cromwell_jobs(days = 7)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.