-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutput_definition.json
52 lines (52 loc) · 1.56 KB
/
output_definition.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
{
"files": {
"workflow-report": {
"filepath": "./wf-tb-amr-report.html",
"title": "Workflow report",
"description": "The report for all samples in the workflow run",
"mime-type": "text/html",
"optional": false,
"type": "aggregated"
},
"workflow-csv-summary": {
"filepath": "./wf-tb-amr-report.csv",
"title": "Workflow CSV results summary",
"description": "The CSV summary of the results of the workflow",
"mime-type": "text/csv",
"optional": false,
"type": "aggregated"
},
"alignment": {
"filepath": "./{{ alias }}.bam",
"title": "Alignment",
"description": "Aligned reads for the sample in BAM format",
"mime-type": "application/x-gzip",
"optional": false,
"type": "per-sample"
},
"alignment-index": {
"filepath": "./{{ alias }}.bam.bai",
"title": "Alignment index",
"description": "An index file for the alignment in BAI format",
"mime-type": "application/x-gzip",
"optional": false,
"type": "per-sample"
},
"variants": {
"filepath": "./{{ alias }}.final.vcf",
"title": "Variants",
"description": "Called, annotated variants for the sample.",
"mime-type": "text/plain",
"optional": false,
"type": "per-sample"
},
"per-sample-report": {
"filepath": "./{{ alias }}_report.html",
"title": "Per sample report",
"description": "The report for a single sample",
"mime-type": "text/html",
"optional": false,
"type": "per-sample"
}
}
}