-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstarfusion.cwl
98 lines (77 loc) · 1.62 KB
/
starfusion.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
#!/usr/bin/env cwl-runner
class: CommandLineTool
label: "STAR-fusion workflow by Jacob Pfeil; CWL by Jeltje van Baren"
cwlVersion: v1.0
doc: |
STAR-Fusion workflow by Jacob Pfeil; CWL by Jeltje van Baren
dct:creator:
"@id": "https://orcid.org/0000-0002-8773-8520"
foaf:name: Jacob Pfeil
foaf:mbox: "mailto:[email protected]"
requirements:
- class: InlineJavascriptRequirement
- class: DockerRequirement
dockerPull: "ucsctreehouse/fusion:0.3.0"
baseCommand: []
inputs:
fastq1:
type: File
inputBinding:
prefix: --left-fq
fastq2:
type: File
inputBinding:
prefix: --right-fq
outputdir:
type: string
default: starfusion_out
inputBinding:
prefix: --output-dir
tar_gz:
type: string
default: starfusion_out
inputBinding:
prefix: --tar-gz
index:
type: File
inputBinding:
prefix: --genome-lib-dir
do_untar:
type: boolean
default: True
inputBinding:
prefix: --untargz-ref
cpu:
type: int
default: 8
inputBinding:
prefix: --CPU
genelist:
type: File?
inputBinding:
prefix: --genelist
skip_filter:
type: boolean
default: False
inputBinding:
prefix: --skip-filter
save_intermediates:
type: boolean
default: False
inputBinding:
prefix: --save-intermediates
root-ownership:
type: boolean
default: True
inputBinding:
prefix: --root-ownership
test:
type: boolean
default: False
inputBinding:
prefix: --test
outputs:
output_files:
type: File
outputBinding:
glob: $(inputs.outputdir + '/*.tar.gz')