-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdxapp.json
82 lines (82 loc) · 2.6 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
{
"name": "vcfscope-measure",
"title": "VCFscope: Measure Genomic Pipeline Performance",
"summary": "Calculate variant calling performance metrics from a single-sample VCF of NA12878 calls, and matched BAM file",
"dxapi": "1.0.0",
"version": "auto-updated-by-bamboo",
"resources": "project-F1GG4100pVjJqZP0B1P9X9Vy",
"contactOrgs": "http://www.garvan.org.au/kccg",
"developers": [ "org-garvan_kccg_developers" ],
"authorizedUsers": [ "org-garvan_kccg", "org-garvan_kccg_developers" ],
"categories": [ "Reports", "Statistics" ],
"inputSpec": [
{
"name": "vcfgz",
"label": "Variants",
"help": "Input NA12878 genotype calls to be validated, in vcf.gz format.",
"class": "file",
"patterns": [ "*.vcf.gz" ]
},
{
"name": "bam",
"label": "Mapped reads",
"help": "The mapped NA12878 reads used to generate the genotype calls being tested, in bam format.",
"class": "file",
"patterns": [ "*.bam" ]
},
{
"name": "bai",
"label": "Mapped read index",
"help": "An index for the mapped reads.",
"class": "file",
"patterns": [ "*.bai" ]
},
{
"group": "advanced",
"name": "region",
"label": "Region BED",
"help": "Limit analysis to the regions in this BED only.",
"class": "file",
"patterns": [ "*.bed" ],
"optional": true
},
{
"group": "advanced",
"name": "store_variants",
"label": "Store variants",
"help": "Store all region-filtered variant calls in the output RDS.",
"class": "boolean",
"default": false
}
],
"outputSpec": [
{
"patterns": [
"*.vcfscope.rds"
],
"label": "VCFscope results RDS",
"help": "An RDS (R data serialization) file containing VCFscope performance metrics.",
"name": "rds",
"class": "file"
}
],
"runSpec": {
"execDepends": [
{ "name": "openjdk-7-jre-headless" }
],
"systemRequirements": {
"main": {
"instanceType": "mem1_ssd1_x32"
}
},
"assetDepends": [
{
"id": "record-F1JXX1j09267BZF2PF5X6pY1"
}
],
"file": "src/code.sh",
"interpreter": "bash",
"distribution": "Ubuntu",
"release": "14.04"
}
}