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
16
17
18
19
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"
    )
  )
)

sevenbridges documentation built on March 25, 2021, 6 p.m.