-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdxapp.json
More file actions
108 lines (108 loc) · 2.57 KB
/
dxapp.json
File metadata and controls
108 lines (108 loc) · 2.57 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
{
"name": "qqplot",
"title": "qqplot",
"summary": "This applet generates a qq plot from the input p-value data.",
"dxapi": "1.0.0",
"inputSpec": [
{
"name": "datafile",
"class": "array:file",
"patterns": ["*.Rda", "*.txt", "*.csv", "*.txt.gz", "*.csv.gz"],
"optional": false
},
{
"name": "label",
"label": "Label",
"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": "p_col",
"label": "The name your p-value column in the dataset. Must be the same if plotting multiple datasets (e.g. merging chromosomes).",
"class": "string",
"optional": true,
"default": "p"
},
{
"name": "filter",
"label": "String: The threshold to apply to the filtering column. Eg. 'maf>0.05' or 'MAC>7'",
"class": "string",
"optional": true,
"default": "FALSE"
},
{
"name": "use_gc_lambda",
"label": "Print the GC Lambda value?",
"class": "boolean",
"optional": true,
"default": true
},
{
"name": "include_ci",
"label": "Include the confidence interval in this plot?",
"class": "boolean",
"optional": true,
"default": true
},
{
"name": "qq_color",
"label": "The color of points in the QQ plot.",
"class": "array:string",
"optional": true,
"default": [
"blue"
]
},
{
"name": "qq_color_criteria",
"label": "Color filtering criteria: Color all points identified by a given criterion (eg. 'maf<0.05') with a specified color. Multiple criteria may be used as long as you give an equal amount of color names in the parameter above.",
"class": "array:string",
"optional": true,
"default": [
"FALSE"
]
}
],
"outputSpec": [
{
"name": "qqplots",
"label": "qqplots",
"class": "array:file"
}
],
"runSpec": {
"systemRequirements": {
"process": {
"instanceType": "mem3_ssd1_x2"
},
"main": {
"instanceType": "mem3_ssd1_x2"
},
"*": {
"instanceType": "mem3_ssd1_x2"
}
},
"file": "src/code.sh",
"interpreter": "bash"
},
"access": {
"project": "CONTRIBUTE",
"allProjects": "CONTRIBUTE",
"network": [
"*"
]
}
}