-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdxapp.json
More file actions
58 lines (58 loc) · 1.89 KB
/
dxapp.json
File metadata and controls
58 lines (58 loc) · 1.89 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
{
"name": "kccg-performance-report",
"title": "Create a Variant Call Performance Report (KCCG)",
"summary": "Create a WGS performance report given one or more performance RDS files from kccg-performance-measure",
"dxapi": "1.0.0",
"version": "auto-updated-by-bamboo",
"resources": "project-Bk6V4v00jvx088XzjQf5F9bV",
"contactOrgs": "http://www.garvan.org.au/research/kinghorn-centre-for-clinical-genomics/clinical-genomics",
"developers": [ "org-garvan_kccg_developers" ],
"authorizedUsers": [ "org-garvan_kccg", "org-garvan_kccg_developers" ],
"categories": [ "Reports", "Statistics" ],
"inputSpec": [
{
"name": "rdslist",
"label": "Performance data",
"help": "Performance data files generated by kccg-performance-measure, in RDS format.",
"class": "array:file",
"patterns": [ "*.rds" ]
}
],
"outputSpec": [
{
"patterns": [
"*.pdf"
],
"label": "Performance report PDF",
"help": "The performance report, in PDF format.",
"name": "pdf",
"class": "file"
},
{
"patterns": [
"*.rds"
],
"label": "Performance report RDS",
"help": "Performance report summary data, in RDS format.",
"name": "rds",
"class": "file"
}
],
"runSpec": {
"execDepends": [
{ "name": "texinfo" },
{ "name": "texlive" },
{ "name": "latex-xcolor" },
{ "name": "texlive-latex-extra" },
{ "name": "ghostscript" },
{ "name": "liblapack-dev" }
],
"systemRequirements": {
"main": {
"instanceType": "mem1_ssd1_x2"
}
},
"file": "src/code.sh",
"interpreter": "bash"
}
}