-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdxapp.json
More file actions
87 lines (87 loc) · 1.77 KB
/
dxapp.json
File metadata and controls
87 lines (87 loc) · 1.77 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
{
"name": "gild_v1",
"title": "GDS Into LD",
"summary": "This app finds the LD between a snp and its regional neighbors from a GDS file using PLINK.",
"tags": [
"Statistics "
],
"dxapi": "1.0.0",
"inputSpec": [
{
"name": "gds_file",
"label": "GDS genotype file",
"class": "file",
"optional": false
},
{
"name": "lead_snp",
"label": "Variant ID (CHR:POS) of lead SNP",
"class": "string",
"optional": false
},
{
"name": "start_pos",
"label": "Starting BP position",
"class": "int",
"optional": false
},
{
"name": "stop_pos",
"label": "Ending BP position",
"class": "int",
"optional": false
},
{
"name": "results_files",
"label": "Label for resulting files",
"class": "string",
"optional": true,
"default": "ld_results"
},
{
"name": "ld_window_kb",
"label": "Value for PLINK option 'ld-window-kb'",
"class": "int",
"optional": true,
"default": 1000
},
{
"name": "ld_window",
"label": "Value for PLINK option 'ld-window'",
"class": "int",
"optional": true,
"default": 99999
},
{
"name": "ld_window_r2",
"label": "Value for PLINK option 'ld-window-r2'",
"class": "float",
"optional": true,
"default": 0
}
],
"outputSpec": [
{
"name": "ld_results",
"class": "array:file"
}
],
"runSpec": {
"execDepends": [
{
"name": "libxml2-dev"
}
],
"file": "src/code.sh",
"release": "14.04",
"interpreter": "bash",
"distribution": "Ubuntu"
},
"access": {
"project": "CONTRIBUTE",
"allProjects": "CONTRIBUTE",
"network": [
"*"
]
}
}