-
Notifications
You must be signed in to change notification settings - Fork 13
/
output_definition.json
92 lines (92 loc) · 3.96 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
{
"files": {
"workflow-report": {
"filepath": "wf-basecalling-report.html",
"title": "workflow report",
"description": "Report summarising the work done by the basecalling workflow",
"mime-type": "text/html",
"optional": false,
"type": "per-sample"
},
"simplex-alignment-pass": {
"filepath": "{{ alias }}.pass.simplex.{{ format }}",
"title": "Simplex alignment file of passed reads",
"description": "BAM or CRAM file of simplex reads for the sample that pass QC filtering.",
"mime-type": "application/x-gzip",
"optional": false,
"type": "per-sample"
},
"duplex-alignment-pass": {
"filepath": "{{ alias }}.pass.duplex.{{ format }}",
"title": "Duplex alignment file of passed reads",
"description": "BAM or CRAM file of duplex reads for the sample that pass QC filtering. Created if duplex basecalling is requested.",
"mime-type": "application/x-gzip",
"optional": true,
"type": "per-sample"
},
"simplex-alignment-pass-index": {
"filepath": "{{ alias }}.pass.simplex.{{ format }}.{{ index_format }}",
"title": "Simplex alignment file index of passed reads",
"description": "The index of the resulting BAM or CRAM file with the simplex reads that pass QC filtering.",
"mime-type": "application/octet-stream",
"optional": false,
"type": "per-sample"
},
"duplex-alignment-pass-index": {
"filepath": "{{ alias }}.pass.duplex.{{ format }}.{{ index_format }}",
"title": "Duplex alignment file index of passed reads",
"description": "The index of the resulting BAM or CRAM file with the duplex reads that pass QC filtering. Created if duplex basecalling is requested.",
"mime-type": "application/octet-stream",
"optional": true,
"type": "per-sample"
},
"simplex-alignment-fail": {
"filepath": "{{ alias }}.fail.simplex.{{ format }}",
"title": "Simplex alignment file of failed reads",
"description": "BAM or CRAM file of simplex reads for the sample that fail QC filtering.",
"mime-type": "application/x-gzip",
"optional": false,
"type": "per-sample"
},
"duplex-alignment-fail": {
"filepath": "{{ alias }}.fail.duplex.{{ format }}",
"title": "Duplex alignment file of failed reads",
"description": "BAM or CRAM file of duplex reads for the sample that fail QC filtering. Created if duplex basecalling is requested.",
"mime-type": "application/x-gzip",
"optional": true,
"type": "per-sample"
},
"simplex-alignment-fail-index": {
"filepath": "{{ alias }}.fail.simplex.{{ format }}.{{ index_format }}",
"title": "Simplex alignment file index of failed reads",
"description": "The index of the resulting BAM or CRAM file with the simplex reads that fail QC filtering.",
"mime-type": "application/octet-stream",
"optional": false,
"type": "per-sample"
},
"duplex-alignment-fail-index": {
"filepath": "{{ alias }}.fail.duplex.{{ format }}.{{ index_format }}",
"title": "Duplex alignment file index of failed reads",
"description": "The index of the resulting BAM or CRAM file with the duplex reads that fail QC filtering. Created if duplex basecalling is requested.",
"mime-type": "application/octet-stream",
"optional": true,
"type": "per-sample"
},
"reference-index": {
"filepath": "{{ ref }}.fai",
"title": "Index of the reference FASTA file",
"description": "Index of the reference FASTA file.",
"mime-type": "text/tab-separated-values",
"optional": true,
"type": "aggregated"
},
"igv-config": {
"filepath": "igv.json",
"title": "JSON configuration file for IGV browser",
"description": "JSON configuration file to be loaded in IGV for visualising alignments against the reference genome.",
"mime-type": "text/json",
"optional": true,
"type": "aggregated"
}
}
}