InputParamList

InputParamList A list of InputParam

inputs

InputParamList(...)

inputs(cwl)

Arguments

...

The InputParam objects.

cwl

A cwlProcess object

Value

An object of class `InputParamList`.

inputs: A list of `InputParam`.

Examples

input1 <- InputParam(id = "sth") InputParamList(input1)
#> inputs: #> sth (string):
## Inputs input1 <- InputParam(id = "sth") echo <- cwlProcess(baseCommand = "echo", inputs = InputParamList(input1)) inputs(echo)
#> inputs: #> sth (string):