-
Notifications
You must be signed in to change notification settings - Fork 4
/
adtex.cwl
61 lines (45 loc) · 1.25 KB
/
adtex.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
#!/usr/bin/env cwl-runner
class: CommandLineTool
id: "ADTEx"
label: "ADTEx workflow"
cwlVersion: v1.0
requirements:
- class: DockerRequirement
dockerPull: "quay.io/ucsc_cgl/dockstore_tool_adtex:1.0.1"
baseCommand: ['-o', './', '--tostdout']
doc: "Docker container for an ADTEx workflow. See the [github repo](https://github.com/BD2KGenomics/dockstore_tool_adtex.git) for more information."
inputs:
centromeres:
type: File
doc: "Centromere bed file"
format: "http://edamontology.org/format_3003"
inputBinding:
prefix: -c
targets:
type: File
doc: "Exome Targets bed file"
format: "http://edamontology.org/format_3003"
inputBinding:
prefix: -b
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: -n
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: -s
stdout: adtex.cnv
outputs:
output:
type: stdout