-
Notifications
You must be signed in to change notification settings - Fork 0
/
output_definition.json
195 lines (195 loc) · 5.82 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
{
"files": {
"workflow-report": {
"filepath": "wf-bacterial-genomes-report.html",
"title": "Workflow report",
"description": "Report for all samples",
"mime-type": "text/html",
"optional": false,
"type": "aggregated"
},
"workflow-results": {
"filepath": "results.json",
"title": "Workflow results",
"description": "Structured workflow results for internal/onward use.",
"mime-type": "text/json",
"optional": false,
"type": "aggregated"
},
"workflow-checkpoints" : {
"filepath": "checkpoints.json",
"title": "workflow checkpoints",
"description": "Structured workflow checkpoints for internal/onward use.",
"mime-type": "text/json",
"optional": false,
"type": "aggregated"
},
"sample-data": {
"filepath": "{{ alias }}/seqs.fastq.gz",
"title": "Concatenated sequence data",
"description": "Per sample reads concatenated in to one fastq file.",
"mime-type": "application/gzip",
"optional": false,
"type": "per-sample"
},
"read-stats-per-file": {
"filepath": "{{ alias }}/fastcat_stats/per-file-stats.tsv",
"title": "Per file read stats",
"description": "A TSV with per file read stats, per sample.",
"mime-type": "text/tsv",
"optional": false,
"type": "per-sample"
},
"read-stats-per-read": {
"filepath": "{{ alias }}/fastcat_stats/per-read-stats.tsv.gz",
"title": "Per read stats",
"description": "A TSV with per read stats, per sample",
"mime-type": "application/gzip",
"optional": false,
"type": "per-sample"
},
"alignment": {
"filepath": "{{ alias }}.bam",
"title": "alignment",
"description": "Aligned reads for the sample in BAM format.",
"mime-type": "application/x-gzip",
"optional": true,
"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": true,
"type": "per-sample"
},
"assembly": {
"filepath": "{{ alias }}.medaka.fasta.gz",
"title": "Draft assembly FASTA file",
"description": "Consensus file generated from either de-novo assembly or reference variant calling pipeline.",
"mime-type": "application/gzip",
"optional": true,
"type": "per-sample"
},
"variants": {
"filepath": "{{ alias }}.medaka.vcf.gz",
"title": "Variants VCF file",
"description": "VCF file of variants detected against the provided reference (Reference mode only).",
"mime-type": "application/gzip",
"optional": true,
"type": "per-sample"
},
"variants_stats": {
"filepath": "{{ alias }}.variants.stats",
"title": "Variants summary",
"description": "TSV file of summary statistics for variants in sample (Reference mode only).",
"mime-type": "text/tab-seperated-values",
"optional": true,
"type": "per-sample"
},
"annotation": {
"filepath": "{{ alias }}.prokka.gff",
"title": "Annotations files",
"description": "Annotations of regions of interest in assembly in GBK and GFF format.",
"mime-type": "application/octet-stream",
"optional": true,
"type": "per-sample"
},
"mlst": {
"filepath": "{{ alias }}.mlst.json",
"title": "Sequence typing results",
"description": "Sequence typing results in JSON format (isolates mode only).",
"mime-type": "application/json",
"optional": true,
"type": "per-sample"
},
"amr": {
"filepath": "{{ alias }}_resfinder_results",
"title": "AMR calling results",
"description": "Resfinder results for AMR calling (isolates mode only).",
"mime-type": "inode/directory",
"optional": true,
"type": "per-sample"
},
"per-sample-report": {
"filepath": "{{ alias }}-isolates-report.html",
"title": "isolates per sample report",
"description": "Per sample report isolates mode",
"mime-type": "text/html",
"optional": true,
"type": "per-sample"
}
},
"checkpoints": {
"reads": {
"type": "per-sample",
"title": "reads",
"description": "Checkpoint to monitor data ingress",
"files": [
"sample-data",
"read-stats-per-file",
"read-stats-per-read"
]
},
"alignment": {
"type": "per-sample",
"title": "alignment",
"description": "Checkpoint to monitor alignment",
"files": [
"alignment",
"alignment-index"
]
},
"assembly": {
"type": "per-sample",
"title": "assembly",
"description": "Checkpoint to monitor alignment",
"files": [
"assembly"
]
},
"variant-calling": {
"type": "per-sample",
"title": "variant calling",
"description": "Checkpoint to monitor variant calling",
"files": [
"variants"
]
},
"annotation": {
"type": "per-sample",
"title": "annotation",
"description": "Checkpoint to monitor assembly annotation",
"files": [
"annotation"
]
},
"amr": {
"type": "per-sample",
"title": "Antimicrobial resistance ",
"description": "Checkpoint to monitor amr",
"files": [
"mlst",
"amr"
]
},
"reporting": {
"type": "aggregated",
"title": "reporting",
"description": "Checkpoint to monitor reporting",
"files": [
"workflow-report",
"workflow-results"
]
},
"per-sample-report": {
"type": "per-sample",
"title": "per-sample reporting",
"description": "Checkpoint to monitor per-sample reporting",
"files": [
"per-sample-report"
]
}
}
}