forked from mrcepid-rap/mrcepid-collecthsmetrics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdxapp.json
85 lines (85 loc) · 1.85 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
{
"name": "mrcepid-collecthsmetrics",
"title": "CollectHsMetrics",
"summary": "Calculates coverage stats for a single CRAM file based on a set of input intervals",
"dxapi": "1.0.0",
"version": "0.0.2",
"openSource": true,
"inputSpec": [
{
"name": "cram_list",
"label": "List of cram files to process in this instance",
"class": "file",
"optional": false,
"patterns": [
"*.txt"
],
"help": ""
},
{
"name": "intervals",
"label": "Interval array in GATK/Picard interval format",
"class": "array:file",
"optional": false,
"patterns": [
"*.interval_list"
],
"help": ""
},
{
"name": "threads",
"label": "number of threads available to this instance",
"class": "int",
"optional": true,
"default": 16,
"help": "Number of threads available to this instance."
},
{
"name": "output_file",
"label": "File to output results to. Default name is coverage.txt.gz",
"class": "string",
"optional": true,
"default": "coverage.txt.gz",
"patterns": [
"*.txt.gz"
],
"help": ""
}
],
"outputSpec": [
{
"name": "output_file",
"label": "Output file with coverage stats",
"class": "file",
"optional": false,
"patterns": [
"*.gz"
],
"help": ""
}
],
"runSpec": {
"timeoutPolicy": {
"*": {
"hours": 80
}
},
"interpreter": "python3",
"file": "src/mrcepid-collecthsmetrics.py",
"distribution": "Ubuntu",
"release": "20.04",
"version": "0",
"execDepends": [
{"name": "openjdk-8-jre-headless"}
]
},
"regionalOptions": {
"aws:eu-west-2": {
"systemRequirements": {
"*": {
"instanceType": "mem3_ssd1_v2_x16"
}
}
}
}
}