-
Notifications
You must be signed in to change notification settings - Fork 4
/
varscan_cnv.cwl
67 lines (51 loc) · 1.37 KB
/
varscan_cnv.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
#!/usr/bin/env cwl-runner
cwlVersion: v1.0
class: CommandLineTool
id: Varscan2
label: Varscan2 workflow
baseCommand: ['-s', './']
doc: "A Docker container for a Varscan2 workflow. See the [github repo](https://github.com/BD2KGenomics/dockstore_tool_varscan_cnv.git) for more information."
requirements:
- class: DockerRequirement
dockerPull: quay.io/ucsc_cgl/dockstore_tool_varscan_cnv:1.0.1
inputs:
genome:
type: File
doc: Genome fasta
format: http://edamontology.org/format_1929
inputBinding:
prefix: -i
centromeres:
type: File
doc: Centromere bed file
format: http://edamontology.org/format_3003
inputBinding:
prefix: -b
targets:
type: File
doc: Exome Targets bed file
format: http://edamontology.org/format_3003
inputBinding:
prefix: -w
control_bam_input:
type: File
doc: The control exome BAM file used as input, it must be sorted.
format: http://edamontology.org/format_2572
inputBinding:
prefix: -c
tumor_bam_input:
type: File
doc: The tumor exome BAM file used as input, it must be sorted.
format: http://edamontology.org/format_2572
inputBinding:
prefix: -t
sample_id:
type: string?
default: mypatient
doc: sample ID to use in output
inputBinding:
prefix: -q
stdout: varscan.cnv
outputs:
- id: output
type: stdout