outputs: Get the outputs for a workflow

Description Usage Arguments Value Examples

View source: R/outputs.R

Description

Retrieve the outputs for the specified workflow. Cromwell will return any outputs which currently exist even if a workflow has not successfully completed.

Usage

1
2
3
4
5
6
7
outputs(x, ...)

## S3 method for class 'character'
outputs(x, id, version = "v1", ...)

## S3 method for class 'WorkflowIdAndStatus'
outputs(x, ...)

Arguments

x

Cromwell API endpoint of WorkflowIdAndStatus object.

...

not used

id

A workflow ID.

version

Cromwell API Version.

Value

WorkflowOutputs object containing outputs and id.

Examples

1
2
3
4
5
6
7
8
## Not run: 
host <- "http://localhost:8000"
workflow <- system.file("extdata/workflow.wdl", package = "CromwellClient")
inputs <- system.file("extdata/inputs.json", package = "CromwellClient")
job <- submit(host, workflow, inputs)
outputs(job)

## End(Not run)

labbcb/CromwellClient documentation built on Aug. 16, 2020, 9:11 p.m.