1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
#!/usr/bin/env cwl-runner
cwlVersion: v1.0
class: CommandLineTool
baseCommand: echo
requirements:
InlineJavascriptRequirement: {}
inputs:
annotation_prokka_evalue:
type: float
default: 0.00001
inputBinding: {}
annotation_prokka_evalue2:
type: float
default: 1.23e-05
inputBinding: {}
annotation_prokka_evalue3:
type: float
default: 1.23e5
inputBinding: {}
annotation_prokka_evalue4:
type: float
default: 1230000
inputBinding: {}
arguments: [ -n ]
stdout: dump
outputs:
result:
type: string
outputBinding:
glob: dump
loadContents: true
outputEval: $(self[0].contents)
|