-
Notifications
You must be signed in to change notification settings - Fork 2
/
dxapp.json
274 lines (274 loc) · 6.77 KB
/
dxapp.json
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
{
"name": "eggd_tso500",
"title": "eggd_tso500",
"summary": "Somatic variant calling for DNA & RNA samples using TSO500 local app",
"dxapi": "1.0.0",
"version":"2.0.1",
"openSource": true,
"inputSpec": [
{
"name": "TSO500_ruo",
"label": "TSO500_ruo",
"help": "Zip file containing of analysis asset",
"class": "file",
"patterns": ["*.zip"],
"suggestions": [
{
"name": "TSO500 Local App v2.2 Asset Bundle",
"value": {
"$dnanexus_link": {
"project": "project-Fkb6Gkj433GVVvj73J7x8KbV",
"id": "file-Fz4X61Q44Bv44FyfJX1jJPj6"
}
}
},
{
"project": "project-Fkb6Gkj433GVVvj73J7x8KbV",
"path": "/assets/tso500_localApp/v2.2/"
}
],
"optional": false,
"group": "files"
},
{
"name": "run_tar_data",
"label": "run tar data",
"help": "tar files of runfolder containing raw sequencing data",
"class": "array:file",
"patterns": ["*.tar.gz"],
"optional": false,
"group": "files"
},
{
"name": "samplesheet",
"label": "samplesheet",
"help": "Samplesheet to use for demultiplexing and analysis",
"class": "file",
"optional": true,
"patterns": ["*.csv"],
"group": "files"
},
{
"name": "analysis_options",
"label": "analysis_options",
"help": "An optional string passed to analysis script",
"class": "string",
"optional": true,
"group": "options"
},
{
"name": "scatter_instance",
"label": "scatter instance",
"help": "instance type to use for scatter sub jobs (default: mem1_ssd1_v2_x36)",
"class": "string",
"default": "mem1_ssd1_v2_x36",
"group": "options"
},
{
"name": "isNovaSeq",
"label": "isNovaSeq",
"help": "(Optional) flag to specify NovaSeq data (default: true)",
"class": "boolean",
"default": true,
"group": "options"
},
{
"name": "upload_demultiplex_output",
"label": "upload demultiplex output",
"help": "(Optional) controls whether demultiplexed files are retained (true) or discarded (false)",
"class": "boolean",
"default": true,
"group": "options"
},
{
"name": "demultiplex_only",
"label": "demultiplex only",
"help": "(Optional) flag to demultiplex a runfolder and upload the fastq files",
"class": "boolean",
"default": false,
"group": "options"
},
{
"name": "include_samples",
"label": "include samples",
"help": "comma separated string of samples to run analysis on (i.e. subset of samplesheet)",
"class": "string",
"optional": true,
"group": "options"
},
{
"name": "exclude_samples",
"label": "exclude samples",
"help": "comma separated string of samples to NOT run analysis on",
"class": "string",
"optional": true,
"group": "options"
},
{
"name": "n_samples",
"label": "no. samples",
"help": "maximum number of samples from samplesheet to run analysis on (this will take the first n sample rows from the samplesheet)",
"class": "int",
"optional": true,
"group": "testing"
}
],
"outputSpec": [
{
"name": "fastqs",
"label": "fastqs",
"class": "array:file",
"help": "fastqs from demultiplexing",
"optional": true
},
{
"name": "dna_bams",
"label": "DNA bams",
"class": "array:file",
"help": "stitched realigned bam files",
"optional": true
},
{
"name": "dna_bam_index",
"label": "DNA bam index",
"class": "array:file",
"help": "stitched realigned bam file index",
"optional": true
},
{
"name": "rna_bams",
"label": "RNA bams",
"class": "array:file",
"help": "RNA aligned bam files",
"optional": true
},
{
"name": "rna_bam_index",
"label": "RNA bam index",
"class": "array:file",
"help": "RNA aligned bam file index",
"optional": true
},
{
"name": "gvcfs",
"label": "genome VCFs",
"class": "array:file",
"optional": true
},
{
"name": "cnv_vcfs",
"label": "CNV VCFs",
"class": "array:file",
"optional": true
},
{
"name": "splice_variants_vcfs",
"label": "splice variants VCFs",
"class": "array:file",
"optional": true
},
{
"name": "msi_metrics",
"label": "MSI metrics",
"class": "array:file",
"optional": true
},
{
"name": "tmb_metrics",
"label": "TMB metrics",
"class": "array:file",
"optional": true
},
{
"name": "small_variant_annotation",
"label": "small variant annotation",
"class": "array:file",
"optional": true,
"help": "Nirvana annotated variants in JSON format"
},
{
"name": "splice_variant_annotation",
"label": "splice variant annotation",
"class": "array:file",
"optional": true,
"help": "annotated splice variants in JSON format"
},
{
"name": "fusions",
"label": "fusions",
"class": "array:file",
"optional": true,
"help": "csv of identified fusions from RNA samples"
},
{
"name": "cvo",
"label": "combined variant outputs",
"class": "array:file",
"help": "combined variant output tsv files",
"optional": true
},
{
"name": "metricsOutput",
"label": "MetricsOutput",
"class": "file",
"help": "Run level MetricsOuput.tsv file",
"optional": true
},
{
"name": "analysis_folder",
"label": "analysis_folder",
"help": "All other files within the analysis folder.",
"class": "array:file",
"optional": true
},
{
"name": "demultiplex_logs",
"label": "demultiplex logs",
"class": "array:file",
"optional":true,
"help": "all intermediate and log files from demultiplexing"
},
{
"name": "logs",
"label": "logs",
"help": "stdout logs created during analysis",
"class": "array:file",
"optional": true
}
],
"runSpec": {
"execDepends": [
],
"distribution" : "Ubuntu",
"release":"20.04",
"version":"0",
"file": "src/code.sh",
"interpreter": "bash",
"headJobOnDemand": true,
"timeoutPolicy": {
"*": {
"hours": 12
}
},
"assetDepends": [
]
},
"developers":[
"org-emee_1"
],
"authorizedUsers": [
"org-emee_1"
],
"access": {
"allProjects":"UPLOAD"
},
"regionalOptions": {
"aws:eu-central-1": {
"systemRequirements": {
"main": {
"instanceType": "mem1_ssd1_v2_x36"
}
}
}
}
}