forked from epi2me-labs/wf-amplicon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
output_definition.json
68 lines (68 loc) · 2.59 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-amplicon-report.html",
"title": "workflow report",
"description": "Report for all samples.",
"mime-type": "text/html",
"optional": false,
"type": "aggregated"
},
"sanitized-ref": {
"filepath": "./reference_sanitized_seqIDs.fasta",
"title": "Sanitized reference file",
"description": "Some programs used by the workflow don't like special characters (like colons) in the sequence IDs in the reference FASTA file. The reference is thus \"sanitized\" by replacing these characters with underscores. This file is only generated when the workflow is run in variant calling mode.",
"mime-type": "text/txt",
"optional": true,
"type": "aggregated"
},
"alignments": {
"filepath": "./{{ alias }}/alignments/aligned.sorted.bam",
"title": "Alignments BAM file",
"description": "BAM file with alignments of input reads against the references (in variant calling mode) or the created consensus (in de-novo consensus mode).",
"mime-type": "application/gzip",
"optional": false,
"type": "per-sample"
},
"alignments-index": {
"filepath": "./{{ alias }}/alignments/aligned.sorted.bam.bai",
"title": "Alignments index file",
"description": "Index for alignments BAM file.",
"mime-type": "application/octet-stream",
"optional": false,
"type": "per-sample"
},
"consensus-fastq": {
"filepath": "./{{ alias }}/consensus/consensus.fastq",
"title": "De-novo consensus FASTQ file",
"description": "Consensus file generated by de-novo consensus pipeline.",
"mime-type": "text/txt",
"optional": true,
"type": "per-sample"
},
"consensus-fasta": {
"filepath": "./{{ alias }}/consensus/consensus.fasta",
"title": "Consensus FASTA file",
"description": "Consensus file generated variant calling pipeline.",
"mime-type": "text/txt",
"optional": true,
"type": "per-sample"
},
"variants": {
"filepath": "./{{ alias }}/variants/medaka.annotated.vcf.gz",
"title": "Variants VCF file",
"description": "VCF file of variants detected against the provided reference.",
"mime-type": "application/gzip",
"optional": true,
"type": "per-sample"
},
"variants-index": {
"filepath": "./{{ alias }}/variants/medaka.annotated.vcf.gz.csi",
"title": "Variants index file",
"description": "Index for variants VCF file.",
"mime-type": "application/gzip",
"optional": true,
"type": "per-sample"
}
}
}