OutputParamList.RdOutputParamList
OutputParamList #' A list of InputParam
outputs The outputs of a cwlProcess object
OutputParamList(out = OutputParam(), ...) outputs(cwl)
| out | The default stdout parameter. |
|---|---|
| ... | The InputParam objects. |
| cwl | A cwlProcess object |
An object of class `OutputParamList`.
outputs: A list of `OutputParam`.
#> outputs: #> file: #> type: File #> outputBinding: #> glob: '*.txt'input1 <- InputParam(id = "sth") echo <- cwlProcess(baseCommand = "echo", inputs = InputParamList(input1)) outputs(echo)#> outputs: #> output: #> type: stdout