forked from moka-guys/dnanexus_upload_multiqc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dxapp.json
56 lines (56 loc) · 1.07 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
{
"name": "upload_multiqc_v1.1",
"title": "Upload Multiqc v1.1",
"summary": "Uploads multiqc file to the Viapath Genomics server",
"tags": [
"QC"
],
"properties": {
"github release": "v1.1"
},
"dxapi": "1.0.0",
"inputSpec": [
{
"name": "multiqc_html",
"label": "Multiqc HTML",
"help": "A multiqc html output file",
"class": "file",
"optional": false
}
],
"outputSpec": [
{
"name": "upload_multiqc",
"label": "MultiQC server index.html files",
"help": "Upload MultiQC app outputs",
"class": "array:file"
}
],
"runSpec": {
"execDepends": [
{
"name": "beautifulsoup4",
"package_manager": "pip",
"version": "4.6"
}
],
"file": "src/code.sh",
"release": "14.04",
"interpreter": "bash",
"distribution": "Ubuntu"
},
"access": {
"network": [
"*"
]
},
"regionalOptions": {
"aws:us-east-1": {
"systemRequirements": {
"main": {
"instanceType": "mem1_ssd1_x2"
}
}
}
}
}