Skip to content
Open
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).

About changelog [here](https://keepachangelog.com/en/1.0.0/)

## [unreleased]
### Fixed
- Bug calculating allele read depth in samples genotype module (#6469)

## [4.113.3]
### Fixed
Expand Down
2 changes: 1 addition & 1 deletion scout/parse/variant/genotype.py
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ def get_read_depth(variant, pos, alt_depth, ref_depth):
if alt_depth != -1:
read_depth += alt_depth
if ref_depth != -1:
read_depth += alt_depth
read_depth += ref_depth

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👀
Well. Staying bugged for 9 years is impressive. 😅

return read_depth


Expand Down
Loading