OutputParamList

OutputParamList #' A list of InputParam

outputs The outputs of a cwlProcess object

OutputParamList(out = OutputParam(), ...)

outputs(cwl)

Arguments

out

The default stdout parameter.

...

The InputParam objects.

cwl

A cwlProcess object

Value

An object of class `OutputParamList`.

outputs: A list of `OutputParam`.

Examples

o1 <- OutputParam(id = "file", type = "File", glob = "*.txt") OutputParamList(o1)
#> outputs: #> file: #> type: File #> outputBinding: #> glob: '*.txt'
input1 <- InputParam(id = "sth") echo <- cwlProcess(baseCommand = "echo", inputs = InputParamList(input1)) outputs(echo)
#> outputs: #> output: #> type: stdout