-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdxapp.json
More file actions
188 lines (188 loc) · 4.16 KB
/
dxapp.json
File metadata and controls
188 lines (188 loc) · 4.16 KB
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
{
"name": "assocplot",
"title": "Regional association plot",
"summary": "assocplot",
"dxapi": "1.0.0",
"inputSpec": [
{
"name": "datafile",
"label": "Required: datafile",
"class": "file",
"optional": false
},
{
"name": "ldfile",
"label": "Required: ldfile",
"class": "file",
"optional": false
},
{
"name": "label",
"label": "Label: Enter a prefix for your output plot (no spaces).",
"class": "string",
"optional": true,
"default": "test"
},
{
"name": "output_type",
"label": "The filetype of the output plot. Must choose 'png', 'tiff', or 'pdf'.",
"class": "string",
"optional": true,
"default": "png",
"choices": [
"png",
"tiff",
"pdf"
]
},
{
"name": "output_args",
"label": "Optional arguments for graphics function: eg. width, height, res, ppi, units, etc.",
"class": "string",
"optional": true,
"default": ""
},
{
"name": "traitname",
"label": "Optional name of trait to appear in plot title. Ex: LDL, SBP, etc.",
"class": "string",
"optional": true,
"default": ""
},
{
"name": "groupname",
"label": "Optional group/project name to appear in plot title. Ex: CHARGE, CHARGE-T2D, TOPMED, etc.",
"class": "string",
"optional": true,
"default": ""
},
{
"name": "ld_filetype",
"label": "The format of the LD file. PLINK or Haploview supported at this time.",
"class": "string",
"optional": true,
"default": "PLINK",
"choices": [
"PLINK",
"Haploview"
]
},
{
"name": "snp_col",
"label": "Marker column name",
"class": "string",
"optional": true,
"default": "Name"
},
{
"name": "gene_col",
"label": "Gene (or other form of aggregation) column name",
"class": "string",
"optional": true,
"default": "gene"
},
{
"name": "chr_col",
"label": "Chromosome column name",
"class": "string",
"optional": true,
"default": "chr"
},
{
"name": "pos_col",
"label": "Position column name",
"class": "string",
"optional": true,
"default": "pos"
},
{
"name": "p_col",
"label": "P-value column name",
"class": "string",
"optional": true,
"default": "p"
},
{
"name": "freq_col",
"label": "Frequency column name",
"class": "string",
"optional": true,
"default": "maf"
},
{
"name": "hetdf_col",
"label": "HetDF column name",
"class": "string",
"optional": true,
"default": "HetDF"
},
{
"name": "index_snp",
"label": "Index SNP (chr:pos) in the specific region to display.",
"class": "string",
"optional": true,
"default": ""
},
{
"name": "index_gene",
"label": "Index gene in the specific region to display.",
"class": "string",
"optional": true,
"default": ""
},
{
"name": "index_region",
"label": "Index region to display. Ex: '16:100000,16:200000'",
"class": "string",
"optional": true,
"default": ""
},
{
"name": "region_width",
"label": "Width of window around index SNP. Default 500kb.",
"class": "string",
"optional": true,
"default": "500000"
},
{
"name": "ancestry",
"label": "Ancestry group (AFR or CEU)",
"class": "string",
"optional": true,
"default": "CEU",
"choices": [
"AFR",
"CEU"
]
},
{
"name": "chr",
"label": "Chromosome number",
"class": "string",
"optional": false
}
],
"outputSpec": [
{
"name": "assoc_plot",
"label": "regional_association.png",
"class": "file"
}
],
"runSpec": {
"systemRequirements": {
"*": {
"instanceType": "mem2_hdd2_x2"
}
},
"file": "src/code.sh",
"interpreter": "bash"
},
"access": {
"project": "CONTRIBUTE",
"allProjects": "CONTRIBUTE",
"network": [
"*"
]
}
}