Skip to content

Commit

Permalink
Update to version 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tmokveld committed Jul 29, 2024
1 parent 4b7576d commit 7bff22d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "trgt"
version = "1.1.0"
version = "1.1.1"
edition = "2021"
build = "build.rs"

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,8 @@ tandem repeats at genome scale. 2024](https://www.nature.com/articles/s41587-023
- Added subsampling of regions with ultra-high coverage (`>MAX_DEPTH * 3`, by default 750); implemented via reservoir sampling.
- Fixed a cluster genotyper bug that occurred when only a single read covered a locus.
- Added new logic for filtering non-HiFi reads: remove up to 3% of lower quality reads that do not match the expected repeat sequence.
- 1.1.1
- Hotfix: Read filtering logic no longer removes reads without RQ tags.

### DISCLAIMER

Expand Down
4 changes: 2 additions & 2 deletions src/trgt/workflows/tr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ fn extract_reads(
continue;
}

if get_rq_tag(&record).unwrap_or(0.0) < min_read_qual {
if get_rq_tag(&record).unwrap_or(1.0) < min_read_qual {
n_filt += 1;
continue;
}
Expand All @@ -322,7 +322,7 @@ fn extract_reads(
continue;
}

if get_rq_tag(&record).unwrap_or(0.0) < min_read_qual {
if get_rq_tag(&record).unwrap_or(1.0) < min_read_qual {
n_filt += 1;
continue;
}
Expand Down

0 comments on commit 7bff22d

Please sign in to comment.