-
Notifications
You must be signed in to change notification settings - Fork 0
/
dxapp.json
118 lines (118 loc) · 2.75 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
{
"name": "vcfeval_hap.py_v1.4.3",
"summary": "v1.4.3 - Use vcfeval and hap.py to calculate NGS performance metrics against truth set (based on precisionFDA app)",
"properties": {
"github release": "v1.4.3"
},
"dxapi": "1.0.0",
"inputSpec": [
{
"name": "query_vcf",
"label": "Query VCF",
"help": "VCF file containing queryset variants (.vcf or .vcf.gz)",
"class": "file",
"patterns": ["*.vcf", "*.vcf.gz"]
},
{
"name": "truth_vcf",
"label": "Truth VCF",
"help": "VCF file containing truthset variants (.vcf or .vcf.gz)",
"class": "file",
"patterns": ["*.vcf", "*.vcf.gz"]
},
{
"name": "panel_bed",
"label": "Panel BED",
"help": "BED containing region (e.g. panel) covered in queryset vcf",
"class": "file",
"patterns": ["*.bed"]
},
{
"name": "high_conf_bed",
"label": "High Confidence BED",
"help": "BED containing high confidence region for truth set",
"class": "file",
"patterns": ["*.bed"]
},
{
"name": "prefix",
"label": "Output prefix",
"class": "string",
"optional": false
},
{
"name": "na12878",
"label": "Perform NA12878 stratification? (SEE README)",
"help": "If the truth set is NA12878, stratification of results will be performed. However this requires the instance type to be upgraded to at least 7GB of RAM and will take longer.",
"class": "boolean",
"default": false
},
{
"name": "genome_reference",
"class": "string",
"default": "GRCh37",
"choices": [
"GRCh37",
"GRCh38"
]
},
{
"name": "skip",
"label": "skip",
"help": "Skip this step if not required",
"class": "boolean",
"optional": false,
"default": false
}
],
"outputSpec": [
{
"name": "detailed_results",
"label": "Archive with detailed results",
"class": "file",
"optional": true
},
{
"name": "summary_csv",
"label": "Summary CSV",
"class": "file",
"optional": true
},
{
"name": "summary_html",
"label": "Summary HTML report",
"class": "file",
"optional": true
}
],
"runSpec": {
"interpreter": "bash",
"headJobOnDemand": false,
"execDepends": [
{
"name": "tabix",
"version": "1.10.2-3"
}
],
"distribution": "Ubuntu",
"release": "20.04",
"version": "0",
"file": "src/code.sh"
},
"access": {
"network": [
"*"
],
"allProjects": "VIEW"
},
"ignoreReuse": false,
"regionalOptions": {
"aws:us-east-1": {
"systemRequirements": {
"*": {
"instanceType": "mem1_ssd1_v2_x2"
}
}
}
}
}