-
Notifications
You must be signed in to change notification settings - Fork 2
/
arriba.cwl
78 lines (60 loc) · 1.23 KB
/
arriba.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
#!/usr/bin/env cwl-runner
class: CommandLineTool
id: "dockstore_tool_arriba"
label: "Arriba workflow by Sebastian Uhrig; CWL by Jeltje van Baren"
cwlVersion: v1.0
dct:creator:
"@id": "jeltje"
foaf:name: Jeltje van Baren
foaf:mbox: "mailto:[email protected]"
doc: |
Arriba workflow by Sebastian Uhrig; CWL by Jeltje van Baren
requirements:
- class: InlineJavascriptRequirement
- class: DockerRequirement
dockerPull: "quay.io/ucsc_cgl/dockstore_tool_arriba:0.12.0"
baseCommand: ["run_arriba"]
inputs:
fastq1:
type: File
inputBinding:
prefix: -f
fastq2:
type: File
inputBinding:
prefix: -r
genofa:
type: File
inputBinding:
prefix: -a
genoversion:
type: string
inputBinding:
prefix: -b
annotation:
type: File
inputBinding:
prefix: -g
knownfusions:
type: File
inputBinding:
prefix: -k
outputdir:
type: string
default: arriba_out
inputBinding:
prefix: -o
star_index:
type: File
inputBinding:
prefix: -s
threads:
type: int
default: 8
inputBinding:
prefix: -T
outputs:
output_file:
type: File
outputBinding:
glob: $(inputs.outputdir + '/fusions.tsv')