stepParam: stepParam

Description Usage Arguments Value Examples

View source: R/AllClasses.R

Description

A workflow step parameters. More details: https://www.commonwl.org/v1.0/Workflow.html#WorkflowStep

Usage

1
2
3
4
5
6
7
8
stepParam(
  id,
  run = cwlParam(),
  In = stepInParamList(),
  Out = list(),
  scatter = character(),
  scatterMethod = character()
)

Arguments

id

The unique identifier for this workflow step.

run

A 'cwlParam' object or the path of a cwl file.

In

A 'stepInParamList'.

Out

A list of outputs

scatter

character or a list. The inputs to be scattered.

scatterMethod

required if scatter is an array of more than one element. It can be one of "dotproduct", "nested_crossproduct" and "flat_crossproduct". Details: https://www.commonwl.org/v1.0/Workflow.html#WorkflowStep

Value

An object of class 'stepParam'.

Examples

1
s1 <- stepParam(id = "s1")

Rcwl documentation built on Nov. 8, 2020, 8:11 p.m.