Skip to content

Commit

Permalink
Release v0.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed May 10, 2021
1 parent a7139aa commit 9ff095a
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,18 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
[Unreleased]: https://git.embl.de/grp-zeller/GECCO/compare/v0.6.2...master
[Unreleased]: https://git.embl.de/grp-zeller/GECCO/compare/v0.6.3...master

## [v0.6.3] - 2021-05-10
[v0.6.3]: https://git.embl.de/grp-zeller/GECCO/compare/v0.6.2...v0.6.3
### Fixed
- HMMER annotation not properly handling inputs with multiple contigs.
- Some progress bar totals displaying as floats in the CLI.
### Changed
- `PyHMMER` now sets the `Z` and `domZ` values from the number of proteins given to the search pipeline.
- `gecco.cli` delegates imports to make CLI more responsive.
- `pkg_resources` has been replaced with `importlib.resources` and `importlib.metadata` where applicable.
- `multiprocessing.cpu_count` has been replaced with `os.cpu_count` where applicable.

## [v0.6.2] - 2021-05-04
[v0.6.2]: https://git.embl.de/grp-zeller/GECCO/compare/v0.6.1...v0.6.2
Expand Down
9 changes: 8 additions & 1 deletion gecco/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
"""Biosynthetic Gene Cluster prediction with Conditional Random Fields.
See Also:
*Accurate de novo identification of biosynthetic gene clusters with GECCO*
Laura M. Carroll, Martin Larralde, Jonas Simon Fleck, Ruby Ponnudurai,
Alessio Milanese, Elisa Cappio, Georg Zeller. bioRxiv 2021.05.03.442509
`doi:10.1101/2021.05.03.442509 <https://doi.org/10.1101/2021.05.03.442509>`_
"""

__author__ = "Martin Larralde"
__license__ = "GPLv3"
__version__ = "0.6.2"
__version__ = "0.6.3"

0 comments on commit 9ff095a

Please sign in to comment.