-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathoutput_definition.json
124 lines (124 loc) · 4.47 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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"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": true,
"type": "aggregated"
},
"per-read-bamstats": {
"filepath": "{{ alias }}.readstats.tsv.gz",
"title": "Per-read alignment stats",
"description": "Bamstats per-read output TSV file (compressed with gzip).",
"mime-type": "application/gzip",
"optional": true,
"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"
},
"alignment-accuracy-histogram": {
"filepath": "{{ alias }}-histograms/accuracy.hist",
"title": "Alignment accuracy histogram",
"description": "Bamstats alignment accuracy histogram TSV file.",
"mime-type": "text/tab-separated-values",
"optional": false,
"type": "per-sample"
},
"alignment-coverage-histogram": {
"filepath": "{{ alias }}-histograms/coverage.hist",
"title": "Alignment coverage histogram",
"description": "Bamstats alignment coverage histogram TSV file.",
"mime-type": "text/tab-separated-values",
"optional": false,
"type": "per-sample"
},
"mapped-read-length-histogram": {
"filepath": "{{ alias }}-histograms/length.hist",
"title": "Read length histogram (mapped)",
"description": "Bamstats read length histogram TSV file (for mapped reads).",
"mime-type": "text/tab-separated-values",
"optional": false,
"type": "per-sample"
},
"unmapped-read-length-histogram": {
"filepath": "{{ alias }}-histograms/length.unmap.hist",
"title": "Read length histogram (unmapped)",
"description": "Bamstats read length histogram TSV file (for unmapped reads).",
"mime-type": "text/tab-separated-values",
"optional": false,
"type": "per-sample"
},
"mapped-read-quality-histogram": {
"filepath": "{{ alias }}-histograms/quality.hist",
"title": "Read quality histogram (mapped)",
"description": "Bamstats read quality histogram TSV file (for mapped reads).",
"mime-type": "text/tab-separated-values",
"optional": false,
"type": "per-sample"
},
"unmapped-read-quality-histogram": {
"filepath": "{{ alias }}-histograms/quality.unmap.hist",
"title": "Read quality histogram (unmapped)",
"description": "Bamstats read quality histogram TSV file (for unmapped reads).",
"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"
},
"igv-config": {
"filepath": "igv.json",
"title": "IGV config JSON file",
"description": "JSON file with IGV config options to be used by the EPI2ME Desktop Application.",
"mime-type": "application/json",
"optional": true,
"type": "aggregated"
}
}
}