-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdxapp.json
executable file
·104 lines (104 loc) · 1.98 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
{
"inputSpec": [
{
"name": "BAM",
"label": "Bam File",
"class": "file",
"optional": false,
"patterns": [
"*.bam"
]
},
{
"name": "BAM_INDEX",
"label": "Bam File Index",
"class": "file",
"optional": false,
"patterns": [
"*.bai"
]
},
{
"class": "string",
"label": "Genome",
"name": "ref_name",
"optional": false,
"choices": ["GRCh37-lite", "GRCh38_no_alt"],
"default": "GRCh37-lite",
"help": ""
}
],
"categories": [],
"version": "COVERAGE_SHORT_VERSION",
"dxapi": "1.0.0",
"details": {
"contactEmail": "[email protected]"
},
"summary": "Build a BigWig file from a BAM",
"title": "Coverage BW (St. Jude)",
"openSource": true,
"developers": [
"user-clmcleod",
"user-athrashe"
],
"authorizedUsers": [
"user-clmcleod",
"user-snewman",
"user-appdpdnanexus_stjude.org",
"user-appdddnanexus_stjude.org",
"org-stjude_cloud_app_runners",
"org-stjude_cloud"
],
"regionalOptions": {
"azure:westus": {
"systemRequirements": {
"*": {
"instanceType": "azure:mem3_ssd1_x2"
}
}
},
"aws:us-east-1": {
"systemRequirements": {
"*": {
"instanceType": "mem3_ssd1_x2"
}
}
}
},
"billTo": "org-stjude_cloud",
"runSpec": {
"interpreter": "bash",
"file": "src/coverage_bw.sh",
"execDepends": [
{
"name": "openjdk-11-jre-headless"
},
{
"name": "samtools"
},
{
"name": "libssl1.1"
},
{
"name": "libssl-dev"
},
{
"name": "libmysqlclient-dev"
}
],
"distribution": "Ubuntu",
"release": "20.04",
"version": "0"
},
"outputSpec": [
{
"name": "coverage_bw",
"label": "Coverage File",
"class": "file"
}
],
"name": "stjude_coverage_bw",
"access": {
"allProjects": "VIEW"
}
}