CommandInputParameter-class: CommandInputParameter Class

Description Examples

Description

An input parameter for a CommandLineTool.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
ipl <- InputParameterList(
    CommandInputParameter(id = "BAM", type = "File",
                          label = "input bam",
                          description = "input bam",
                          inputBinding = CommandLineBinding(
                              position = 1L
                          )),
    CommandInputParameter(id = "level", type = "Integer",
                          label = "Compression level",
                          description = "Compression level",
                          inputBinding = CommandLineBinding(
                              position = 2L,
                              prefix = "-l"
                          ))
)

tengfei/rabix.R documentation built on May 31, 2019, 8:34 a.m.