Skip to content

Commit

Permalink
Release v0.4.8
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Oct 27, 2021
1 parent c0f64e3 commit eb6fe7c
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
22 changes: 21 additions & 1 deletion CHANGELOG.md
Expand Up @@ -6,7 +6,27 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.


## [Unreleased]
[Unreleased]: https://github.com/althonos/pyhmmer/compare/v0.4.7...HEAD
[Unreleased]: https://github.com/althonos/pyhmmer/compare/v0.4.8...HEAD


## [v0.4.8] - 2021-10-27
[v0.4.8]: https://github.com/althonos/pyhmmer/compare/v0.4.7...v0.4.8

### Added
- Constructor arguments and properties to `plan7.Pipeline` to support bit score thresholds instead to filter top hits.
- Support for creating a `SequenceFile` and an `MSAFile` using a Python file-like object instead of only supporting filenames.
- Support for reading individual sequences from an MSA file with `SequenceFile`.
- `TextMSA.alignment` to access the actual alignment as a tuple of strings.
- Subtraction and division support for `easel.Vector` subclasses

### Changed
- `plan7.Cutoffs` now support setting the bit score cutoffs, but requires both to be set or cleared at the same time.
- `easel.Vector` will always allocate some memory when
created manually to avoid having a special empty case in every vector method.
- `pyhmmer.easel.AllocationError` now stores the size it failed to allocate, and the number of elements when allocating an array.

### Fixed
- `TextSequence.digitize` will not raise a `ValueError` when the sequence contains invalid characters for the alphabet (previously was an `UnexpectedError`).


## [v0.4.7] - 2021-09-28
Expand Down
2 changes: 1 addition & 1 deletion pyhmmer/__init__.py
Expand Up @@ -25,7 +25,7 @@

__author__ = "Martin Larralde <martin.larralde@embl.de>"
__license__ = "MIT"
__version__ = "0.4.7"
__version__ = "0.4.8"
__all__ = [
errors.__name__,
easel.__name__,
Expand Down

0 comments on commit eb6fe7c

Please sign in to comment.