-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsomatic_sniper.cwl
76 lines (75 loc) · 1.32 KB
/
somatic_sniper.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
66
67
68
69
70
71
72
73
74
75
76
class: CommandLineTool
label: SomaticSniper
cwlVersion: v1.0
baseCommand: [ python, /opt/SomaticSniper.py, -F, vcf, --workdir, ./ ]
requirements:
- class: "DockerRequirement"
dockerPull: "opengenomics/somatic-sniper:latest"
inputs:
reference:
type: File
inputBinding:
prefix: -f
tumor_name:
type: string
default: "TUMOR"
inputBinding:
prefix: -t
normal_name:
type: string
default: "NORMAL"
inputBinding:
prefix: -n
mapq:
type: int
inputBinding:
prefix: -q
default: 0
somaticq:
type: int
inputBinding:
prefix: -Q
default: 40
loh:
type: boolean
default: false
inputBinding:
prefix: -L
gor:
type: boolean
default: false
inputBinding:
prefix: -G
dis_priors:
type: boolean
default: false
inputBinding:
prefix: -p
use_priorp:
type: boolean
default: false
inputBinding:
prefix: -J
prior_p:
type: float
default: 0.01
inputBinding:
prefix: -s
tumor:
type: File
inputBinding:
position: 1
normal:
type: File
inputBinding:
position: 2
output_name:
type: string
default: "somatic_sniper.vcf"
inputBinding:
position: 3
outputs:
mutations:
type: File
outputBinding:
glob: somatic_sniper.vcf