diff --git a/Cargo.toml b/Cargo.toml index daa2942..a3c87d1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ members = ["crates/*", "py-deepbiop"] default-members = ["crates/*"] [workspace.package] -version = "0.1.6" +version = "0.1.7" edition = "2021" authors = ["Yangyang Li "] homepage = "https://github.com/cauliyang/DeepBioP" @@ -62,8 +62,8 @@ flate2 = { version = "1.0.30", features = [ ], default-features = false } deepbiop-fq = { version = "0.1.6", path = "crates/deepbiop-fq" } -deepbiop-bam = { version = "0.1.6", path = "crates/deepbiop-bam" } -deepbiop-utils = { version = "0.1.6", path = "crates/deepbiop-utils" } +deepbiop-bam = { version = "0.1.7", path = "crates/deepbiop-bam" } +deepbiop-utils = { version = "0.1.7", path = "crates/deepbiop-utils" } [profile.opt-dev] inherits = "dev" diff --git a/crates/deepbiop-bam/CHANGELOG.md b/crates/deepbiop-bam/CHANGELOG.md index 53014f3..33874d1 100644 --- a/crates/deepbiop-bam/CHANGELOG.md +++ b/crates/deepbiop-bam/CHANGELOG.md @@ -6,6 +6,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.7](https://github.com/cauliyang/DeepBioP/compare/deepbiop-bam-v0.1.6...deepbiop-bam-v0.1.7) - 2024-08-11 + +### Added +- Add new chimeric event example in documentation +- Add debug log for parsing SA tag +- Add chimeric read filtering and checking functions +- Add derive_builder and deepbiop-utils dependencies + +### Fixed +- Update import statement for logging module + +### Other +- Change name field in ChimericEvent to be an Option +- Rename functions for clarity and consistency +- Rename function filter_reads to keep_reads + ## [0.1.6](https://github.com/cauliyang/DeepBioP/compare/deepbiop-bam-v0.1.5...deepbiop-bam-v0.1.6) - 2024-08-08 ### Added diff --git a/crates/deepbiop-utils/CHANGELOG.md b/crates/deepbiop-utils/CHANGELOG.md index 8715d6d..953323d 100644 --- a/crates/deepbiop-utils/CHANGELOG.md +++ b/crates/deepbiop-utils/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.7](https://github.com/cauliyang/DeepBioP/compare/deepbiop-utils-v0.1.6...deepbiop-utils-v0.1.7) - 2024-08-11 + +### Added +- Add derive_builder and deepbiop-utils dependencies + ## [0.1.6](https://github.com/cauliyang/DeepBioP/compare/deepbiop-utils-v0.1.5...deepbiop-utils-v0.1.6) - 2024-08-08 ### Added