File: floats_small_and_large.cwl

package info (click to toggle)
cwltool 3.1.20250110105449-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,516 kB
  • sloc: python: 20,992; javascript: 20,796; sh: 233; makefile: 152
file content (40 lines) | stat: -rwxr-xr-x 645 bytes parent folder | download
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)