-
Notifications
You must be signed in to change notification settings - Fork 1
/
dxapp.json
66 lines (66 loc) · 1.38 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
{
"name": "upload_multiqc_v1.4.0",
"title": "Upload Multiqc v1.4.0",
"summary": "Uploads multiqc file to the Viapath Genomics server",
"tags": [
"QC"
],
"properties": {
"github release": "v1.4.0"
},
"dxapi": "1.0.0",
"inputSpec": [
{
"name": "multiqc_html",
"label": "Multiqc HTML",
"help": "A multiqc html output file",
"class": "file",
"optional": false
},
{
"name": "multiqc_data_input",
"label": "Multiqc data files",
"help": "Data files output by multiqc ",
"class": "array:file",
"optional": true
},
{
"name": "upload_data_files",
"label": "upload multiqc data files to server",
"help": "upload multiqc data files to server",
"class": "boolean",
"optional": false,
"default": true
}
],
"outputSpec": [
{
"name": "upload_multiqc",
"label": "MultiQC server index.html files",
"help": "Upload MultiQC app outputs",
"class": "array:file"
}
],
"runSpec": {
"interpreter": "bash",
"distribution": "Ubuntu",
"release": "16.04",
"version": "0",
"file": "src/code.sh"
},
"access": {
"network": [
"*"
]
},
"ignoreReuse": false,
"regionalOptions": {
"aws:us-east-1": {
"systemRequirements": {
"main": {
"instanceType": "mem1_ssd1_x2"
}
}
}
}
}