Skip to content

Commit

Permalink
Release v0.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Dec 23, 2021
1 parent a065f3a commit 3754339
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
15 changes: 12 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,20 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.


## [Unreleased]
[Unreleased]: https://github.com/althonos/pyrodigal/compare/v0.6.3...HEAD
[Unreleased]: https://github.com/althonos/pyrodigal/compare/v0.6.4...HEAD


## [v0.6.3] - 2021
[v0.6.2]: https://github.com/althonos/pyrodigal/compare/v0.6.2...v0.6.3
## [v0.6.4] - 2021-12-23
[v0.6.4]: https://github.com/althonos/pyrodigal/compare/v0.6.3...v0.6.4

### Added
- `load` and `dump` methods to `TrainingInfo` for storing and loading a raw training info structure.
- Support for creating an `OrfFinder` pre-configured with a training info.
- `-t` and `-n` flags to the CLI.


## [v0.6.3] - 2021-12-23
[v0.6.3]: https://github.com/althonos/pyrodigal/compare/v0.6.2...v0.6.3

### Added
- `pyrodigal` command line script exposing a CLI mimicking the original `prodigal` binary.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ Pyrodigal makes two changes compared to the original Prodigal command line:
instances are thread-safe. In addition, the
[`find_genes`](https://pyrodigal.readthedocs.io/en/stable/api/orf_finder.html#pyrodigal.OrfFinder.find_genes)
method is re-entrant. This means you can train an
[`OrfFinder`]((https://pyrodigal.readthedocs.io/en/stable/api/orf_finder.html#pyrodigal.OrfFinder)
[`OrfFinder`](https://pyrodigal.readthedocs.io/en/stable/api/orf_finder.html#pyrodigal.OrfFinder)
instance once, and then use a pool to process sequences in parallel:
```python
import pyrodigal
Expand Down
2 changes: 1 addition & 1 deletion pyrodigal/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

__author__ = "Martin Larralde <martin.larralde@embl.de>"
__license__ = "GPLv3"
__version__ = "0.6.3"
__version__ = "0.6.4"

_Sized.register(Sequence)
_Sequence.register(Genes)
Expand Down

0 comments on commit 3754339

Please sign in to comment.