-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindelocator.cwl
65 lines (63 loc) · 1.18 KB
/
indelocator.cwl
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
cwlVersion: v1.0
class: CommandLineTool
label: Indelocator
baseCommand: ["java", "-Xmx7g", "-jar", "/opt/IndelGenotyper.jar", "-T", "IndelGenotyperV2"]
requirements:
- class: DockerRequirement
dockerPull: opengenomics/indelocator-tool:latest
inputs:
somatic_flag:
type: boolean
default: true
inputBinding:
prefix: --somatic
quiet_flag:
type: boolean
default: true
inputBinding:
prefix: -quiet
window_size:
type: int
default: 300
inputBinding:
prefix: -ws
normal:
type: File
inputBinding:
position: 1
prefix: --input_file:normal
secondaryFiles:
- .bai
tumor:
type: File
inputBinding:
position: 2
prefix: --input_file:tumor
secondaryFiles:
- .bai
reference:
type: File
inputBinding:
prefix: -R
secondaryFiles:
- .fai
- ^.dict
bed_file:
type: File?
inputBinding:
prefix: -L
min_coverage:
type: int
default: 3
inputBinding:
prefix: --minCoverage
vcf:
type: string
default: indelocator.vcf
inputBinding:
prefix: -o
outputs:
mutations:
type: File
outputBinding:
glob: $(inputs.vcf)