From d17c7c2cc97978dbfb60653ef9fea87306baee2d Mon Sep 17 00:00:00 2001 From: Martin Larralde Date: Mon, 17 Oct 2022 18:09:30 +0200 Subject: [PATCH] Release v0.2.0 --- CHANGELOG.md | 16 +++++++++++++++- pyopal/_version.py | 2 +- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a1eaa3a..538e8e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,21 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] -[Unreleased]: https://github.com/althonos/pyopal/compare/v0.1.1...HEAD +[Unreleased]: https://github.com/althonos/pyopal/compare/v0.2.0...HEAD + + +## [v0.2.0] - 2022-10-17 +[v0.2.0]: https://github.com/althonos/pyopal/compare/v0.1.1...v0.2.0 + +### Added +- `query_length` and `target_length` properties to `FullResult` to the lenghts of the complete query and target sequences. +- `FullResult.coverage` method to compute the coverage of the alignment using either the query or the target as the reference. + +### Changed +- Compile Cython extension with `binding=False` to fix rendering of documentation. + +### Fixed +- Insertion & deletion symbols being inverted in `FullResult.cigar` strings. ## [v0.1.1] - 2022-10-07 diff --git a/pyopal/_version.py b/pyopal/_version.py index 485f44a..d3ec452 100644 --- a/pyopal/_version.py +++ b/pyopal/_version.py @@ -1 +1 @@ -__version__ = "0.1.1" +__version__ = "0.2.0"