-
Notifications
You must be signed in to change notification settings - Fork 35
/
output_definition.json
76 lines (76 loc) · 2.51 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
{
"files": {
"workflow-report": {
"filepath": "./wf-artic-report.html",
"title": "Workflow report",
"description": "Report for all samples.",
"mime-type": "text/html",
"optional": false,
"type": "aggregated"
},
"consensus": {
"filepath": "./all_consensus.fasta",
"title": "Consensus sequences",
"description": "Final consensus sequences for all samples in the analysis.",
"mime-type": "text/plain",
"optional": false,
"type": "aggregated"
},
"pangolin-results": {
"filepath": "./lineage_report.csv",
"title": "Pangolin results",
"description": "Pangolin results for each of the samples in the analysis.",
"mime-type": "text/csv",
"optional": false,
"type": "aggregated"
},
"nextclade-results": {
"filepath": "./nextclade.json",
"title": "Nextclade results",
"description": "Nextclade results for each of the samples in the analysis.",
"mime-type": "application/json",
"optional": false,
"type": "aggregated"
},
"coverage": {
"filepath": "./all_depth.txt",
"title": "Coverage data",
"description": "Coverage of the reference genome in 20 base windows in all the samples in the analysis.",
"mime-type": "text/plain",
"optional": false,
"type": "aggregated"
},
"variants": {
"filepath": "./{{ alias }}.pass.named.vcf.gz",
"title": "Variants",
"description": "A VCF file containing high confidence variants in the sample when compared to the reference.",
"mime-type": "application/gzip",
"optional": false,
"type": "per-sample"
},
"variants-index": {
"filepath": "./{{ alias }}.pass.named.vcf.gz.tbi",
"title": "Variants index",
"description": "An index file for the variants.",
"mime-type": "application/octet-stream",
"optional": false,
"type": "per-sample"
},
"alignments": {
"filepath": "./{{ alias }}.primertrimmed.rg.sorted.bam",
"title": "Alignments",
"description": "A BAM file containing the reads for the sample aligned to the reference.",
"mime-type": "application/gzip",
"optional": false,
"type": "per-sample"
},
"alignments-index": {
"filepath": "./{{ alias }}.primertrimmed.rg.sorted.bam.bai",
"title": "Alignments index",
"description": "An index file for the alignments.",
"mime-type": "application/octet-stream",
"optional": false,
"type": "per-sample"
}
}
}