Learn R Programming

sevenbridges (version 1.2.4)

CommandInputParameter-class: CommandInputParameter Class

Description

An input parameter for a CommandLineTool.

Arguments

Examples

Run this code
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"
                          ))    
)

Run the code above in your browser using DataLab