Skip to content

Commit 6d0c3f5

Browse files
author
Chiara Rasi
committed
Expand coverage report explanation to better understand how coverage and coverage completeness values were calculated
1 parent 4ff0e06 commit 6d0c3f5

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [unreleased]
2+
### Added
3+
- Improve report explanation to better interpret average coverage and coverage completeness stats shown on the coverage report
4+
15
## [1.9]
26
### Added
37
- Condensed `/coverage/d4/genes/summary` for condensed stats over a gene list

src/chanjo2/templates/report.html

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,10 +179,16 @@ <h4>General</h4>
179179
</p>
180180
{% endif %}
181181

182+
<p>
183+
<strong>Average coverage</strong>:
184+
defined as the mean coverage over a list of genes. Values were calculated as the mean of coverage values over single genes or intervals (transcripts or exons) from single genes
185+
e.g. 38.24
186+
</p>
187+
182188
<p>
183189
<strong>Completeness</strong>:
184190
defined as the ratio of bases
185-
sequenced deeper than a specified cutoff
191+
sequenced deeper than a specified cutoff. Values were calculated across pooled genes or genes' intervals, according to the sequencing technology used
186192
e.g. 10x
187193
</p>
188194

@@ -250,6 +256,11 @@ <h3 class="mt-5">Explanations</h3>
250256
{{ super() }}
251257

252258
<script>
259+
// Enable tooltips
260+
$(document).ready(function(){
261+
$('[data-toggle="tooltip"]').tooltip();
262+
});
263+
253264
function toggle_visibility(ids)
254265
{
255266
for (let id of ids) {

0 commit comments

Comments
 (0)