This repository has been archived by the owner on Jan 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dxapp.json
executable file
·189 lines (189 loc) · 4.18 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
{
"name": "eggd_athena",
"title": "eggd_athena",
"summary": "DNAnexus app of Athena",
"dxapi": "1.0.0",
"version": "1.5.0",
"properties": {
"githubRelease": "v1.5.0",
"athenaRelease": "v1.5.0"
},
"authorizedUsers": [
"org-emee_1",
"user-jethror1",
"user-spaul4"
],
"developers": [
"org-emee_1",
"user-jethror1",
"user-spaul4"
],
"inputSpec": [
{
"name": "panel_bed",
"label": "BED file of panel",
"class": "file",
"optional": false,
"patterns": [
"*.bed"
],
"help": ""
},
{
"name": "exons_file",
"label": "Exons file defining gene names and exon numbers for all transcripts / regions (from 001_References)",
"class": "file",
"optional": false,
"suggestions": [
{
"project": "project-Fkb6Gkj433GVVvj73J7x8KbV",
"path": "/annotation/b37/"
}
],
"patterns": [
"*"
],
"help": ""
},
{
"name": "mosdepth_files",
"label": "Array of files output from mosdepth.",
"class": "array:file",
"optional": false,
"patterns": [
"*"
],
"help": "Array of eggd_mosdepth output files, uses per base bed and reference build txt file."
},
{
"name": "per_chromosome_coverage",
"label": "Include per-chromosome coverage plots.",
"class": "boolean",
"default": false,
"help": ""
},
{
"name": "thresholds",
"label": "String of comma seperated thresholds at which to calculate coverage",
"class": "string",
"optional": true,
"default": "10, 20, 30, 50, 100",
"help": ""
},
{
"name": "cutoff_threshold",
"label": "Threshold to define sub-optimal coverage",
"class": "int",
"optional": true,
"default": 20,
"help": ""
},
{
"name": "name",
"label": "Sample name, used in report and for naming output files",
"class": "string",
"optional": true,
"help": ""
},
{
"name": "limit",
"label": "Number of genes at which to skip full gene plot generation, for large panels this may take a long time.",
"class": "int",
"optional": true,
"default": -1,
"help": ""
},
{
"name": "panel",
"label": "Display panel",
"class": "boolean",
"default": true,
"help": "Display panel(s) / gene(s) from name of panel bed file. Default: True"
},
{
"name": "panel_filters",
"label": "panel filters",
"class": "string",
"help": "Drop down gene panel filters for full gene plots, should be given as panel1:gene1,gene2,gene3"
},
{
"name": "snps",
"label": "SNP VCFs to check coverage for",
"class": "array:file",
"optional": true,
"patterns": [
"*.vcf*"
],
"help": ""
},
{
"name": "summary",
"label": "Report summary",
"class": "boolean",
"default": false,
"help": "Display summary of genes / transcripts in report in summary section. Default: False"
}
],
"outputSpec": [
{
"name": "exon_stats",
"label": "Exon statistics file",
"class": "file",
"patterns": [
"*"
],
"help": ""
},
{
"name": "gene_stats",
"label": "Gene statistics file",
"class": "file",
"patterns": [
"*"
],
"help": ""
},
{
"name": "report",
"label": "HTML coverage report",
"class": "file",
"patterns": [
"*"
],
"help": ""
},
{
"name": "annotated_bed",
"label": "Annotated BED file",
"class": "file",
"patterns": [
"*"
],
"help": ""
}
],
"runSpec": {
"timeoutPolicy": {
"*": {
"hours": 4
}
},
"interpreter": "bash",
"file": "src/eggd_athena.sh",
"distribution": "Ubuntu",
"release": "20.04",
"version": "0"
},
"access": {
"project": "CONTRIBUTE"
},
"regionalOptions": {
"aws:eu-central-1": {
"systemRequirements": {
"*": {
"instanceType": "mem1_ssd1_v2_x16"
}
}
}
}
}