-
Notifications
You must be signed in to change notification settings - Fork 5
/
output_definition.json
60 lines (60 loc) · 1.87 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
{
"files": {
"workflow-report": {
"filepath": "./wf-flu-report.html",
"title": "Workflow report",
"description": "Easy-to-use HTML report for all samples in the run.",
"mime-type": "text/html",
"optional": false,
"type": "aggregated"
},
"typing-results": {
"filepath": "./wf-flu-results.csv",
"title": "Typing results",
"description": "Typing results in CSV format for onward processing.",
"mime-type": "text/txt",
"optional": false,
"type": "aggregated"
},
"alignment": {
"filepath": "./{{ alias }}/alignments/align.bam",
"title": "Read alignments",
"description": "Read allignments per sample in BAM format.",
"mime-type": "application/gzip",
"optional": false,
"type": "per-sample"
},
"draft_consensus_fasta" : {
"filepath": "./{{ alias }}/consensus/draft.consensus.fasta",
"title": "Draft consensus FASTA",
"description": "Draft consensus sequence.",
"mime-type": "text/plain",
"optional": false,
"type": "per-sample"
},
"depth": {
"filepath": "./{{ alias }}/coverage/depth.txt",
"title": "Read depth",
"description": "Read depth per base.",
"mime-type": "text/tab-separated-values",
"optional": false,
"type": "per-sample"
},
"typing": {
"filepath": "./{{ alias }}/typing/insaflu.typing.txt",
"title": "Insaflu typing results",
"description": "Insaflu abricate typing results.",
"mime-type": "text/tab-separated-values",
"optional": false,
"type": "per-sample"
},
"variants-file" : {
"filepath": "./{{ alias }}/variants/variants.annotated.filtered.vcf",
"title": "Variants file",
"description": "Called variants in VCF format.",
"mime-type": "text/plain",
"optional": false,
"type": "per-sample"
}
}
}