forked from epi2me-labs/wf-alignment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
output_definition.json
68 lines (68 loc) · 2.22 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"files": {
"workflow-report": {
"filepath": "./wf-alignment-report.html",
"title": "workflow report",
"description": "Report for all samples",
"mime-type": "text/html",
"optional": false,
"type": "aggregated"
},
"references": {
"filepath": "./combined-refs.fasta",
"title": "Combined references",
"description": "FASTA file containing all input references.",
"mime-type": "text/txt",
"optional": false,
"type": "aggregated"
},
"references-index": {
"filepath": "./combined-refs.fasta.fai",
"title": "Combined references index",
"description": "Index file for combined references FASTA.",
"mime-type": "text/txt",
"optional": false,
"type": "aggregated"
},
"references-mmi-index": {
"filepath": "./combined-refs.mmi",
"title": "Combined references MMI index",
"description": "Minimap2 index file for combined references FASTA.",
"mime-type": "application/octet-stream",
"optional": false,
"type": "aggregated"
},
"per-read-bamstats": {
"filepath": "./{{ alias }}.readstats.tsv",
"title": "Per-read alignment stats",
"description": "Bamstats per-read output TSV file.",
"mime-type": "text/tab-separated-values",
"optional": false,
"type": "per-sample"
},
"bamstats-flagstat": {
"filepath": "./{{ alias }}.flagstat.tsv",
"title": "Per-reference alignment stats",
"description": "Bamstats flagstat output TSV file.",
"mime-type": "text/tab-separated-values",
"optional": false,
"type": "per-sample"
},
"alignments": {
"filepath": "./{{ alias }}.sorted.aligned.bam",
"title": "Alignments BAM file",
"description": "BAM file with alignments of filtered input reads against the combined references.",
"mime-type": "application/gzip",
"optional": false,
"type": "per-sample"
},
"alignments-index": {
"filepath": "./{{ alias }}.sorted.aligned.bam.bai",
"title": "Alignments index file",
"description": "Index for alignments BAM file.",
"mime-type": "application/octet-stream",
"optional": false,
"type": "per-sample"
}
}
}