Get output paths associated with one or more workflow ids

cromwellOutputs(ids, ...)

Arguments

ids

a character vector of Cromwell ids. See cromwellQuery for details of how to query Cromwell for available ids.

...

passed directly to httr `POST` (for including `timeouts`, `handles`, etc.)

Value

a list of output lists.

References

https://github.com/broadinstitute/cromwell#get-apiworkflowsversionidoutputs

Examples

## Not run: ------------------------------------ # res = cromwellQuery(terms=c(status='Succeeded',name='taskName')) # head(res) # outfilelist = cromwellOutputs(res$id) # str(outfilelist,list.len=5) ## ---------------------------------------------