View source: R/cromwellFailures.R
cromwell_failures | R Documentation |
Gets info about failed calls for a specific workflow
cromwell_failures(workflow_id, url = cw_url(), token = NULL)
workflow_id |
(character) A single workflow ID |
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 failed calls in a workflow; columns vary depending on workflow; if no results, a zero row tibble
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)
## Request workflow metadata for a specific job that was run in your
## Cromwell instance.
thisWorkflowID <- recentJobs$workflow_id[1]
failsMeta <- cromwell_failures(workflow_id = thisWorkflowID)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.