-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathoutput_definition.json
69 lines (68 loc) · 2.17 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-mpx-report.html",
"title": "Workflow report",
"description": "The report for the workflow",
"mime-type": "text/html",
"optional": false,
"type": "aggregated"
},
"denovo-consensus-fasta" : {
"filepath": "./denovo.consensus.fasta",
"title": "De novo consensus assembly FASTA",
"description": "De novo consensus assembly sequence from Flye and polished by Medaka.",
"mime-type": "text/plain",
"optional": true,
"type": "per-sample"
},
"draft-consensus-fasta" : {
"filepath": "./{{ alias }}.ref.consensus.fasta",
"title": "Reference-based consensus assembly FASTA",
"description": "Reference-based consensus sequence from Bcftools.",
"mime-type": "text/plain",
"optional": false,
"type": "per-sample"
},
"per-read-stats" : {
"filepath": "./{{ alias }}.per-read-stats.tsv.gz",
"title": "Read stats",
"description": "A simple text file providing a summary of sequencing reads.",
"mime-type": "application/gzip",
"optional": true,
"type": "per-sample"
},
"read-alignment" : {
"filepath": "./{{ alias }}.bam",
"title": "Read alignment",
"description": "Read alignments in BAM format.",
"mime-type": "application/gzip",
"optional": true,
"type": "per-sample"
},
"read-alignment-index": {
"filepath": "./{{ alias }}.bam.bai",
"title": "Alignment index file",
"description": "Index file of BAM file.",
"mime-type": "application/octet-stream",
"optional": true,
"type": "per-sample"
},
"variants-file" : {
"filepath": "./{{ alias }}.annotate.filtered.vcf",
"title": "Variants file",
"description": "Called variants in VCF format.",
"mime-type": "text/plain",
"optional": false,
"type": "per-sample"
},
"depth-file" : {
"filepath": "./{{ alias }}.annotate.filtered.vcf",
"title": "Depth file",
"description": "Per-base depth: overall, forward and reverse.",
"mime-type": "text/plain",
"optional": false,
"type": "per-sample"
}
}
}