InputArrayParam: InputArrayParam

Description Usage Arguments Value Examples

View source: R/AllClasses.R

Description

Parameters for array inputs. To specify an array parameter, the array definition is nested under the type field with 'type: array' and items defining the valid data types that may appear in the array. More details: https://www.commonwl.org/v1.0/CommandLineTool.html#CommandInputArraySchema

Usage

1
2
3
4
5
6
7
8
9
InputArrayParam(
  label = "",
  type = "array",
  items = character(),
  prefix = "",
  separate = TRUE,
  itemSeparator = character(),
  valueFrom = character()
)

Arguments

label

A short description for this object

type

Must be "array".

items

Defines the type of the array elements.

prefix

Command line prefix to add before the value.

separate

If true (default), then the prefix and value must be added as separate command line arguments; if false, prefix and value must be concatenated into a single command line argument.

itemSeparator

Join the array elements into a single string with separator.

valueFrom

String or Expression.

Value

An object of class 'InputArrayParam'.

Examples

1
InputArrayParam(items = "string", prefix="-B=", separate = FALSE)

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