Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Expand coverage report explanation to better understand how coverage and coverage completeness values were calculated #327

Merged
merged 2 commits into from
Jul 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [unreleased]
### Added
- Improve report explanation to better interpret average coverage and coverage completeness stats shown on the coverage report

## [1.9]
### Added
- Condensed `/coverage/d4/genes/summary` for condensed stats over a gene list
Expand Down
8 changes: 7 additions & 1 deletion src/chanjo2/templates/report.html
Original file line number Diff line number Diff line change
Expand Up @@ -179,10 +179,16 @@ <h4>General</h4>
</p>
{% endif %}

<p>
<strong>Average coverage</strong>:
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
e.g. 38.24
</p>

<p>
<strong>Completeness</strong>:
defined as the ratio of bases
sequenced deeper than a specified cutoff
sequenced deeper than a specified cutoff. Values were calculated across pooled genes or genes' intervals, according to the sequencing technology used
e.g. 10x
</p>

Expand Down
Loading