An input parameter for a CommandLineTool.
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"
)
)
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.