Skip to content

Releases: althonos/pyrodigal

0.4.6

05 Mar 14:07
Compare
Choose a tag to compare

Changed

  • Tests are now in the pyrodigal.tests module and can be run after a site install.

Fixed

  • Pyrodigal.find_genes stalling on sequences shorter than 3 nucleotides.

0.4.5

03 Mar 19:04
Compare
Choose a tag to compare

Fixed

  • Compilation of OSX and Windows wheels.

0.4.4

03 Mar 16:02
Compare
Choose a tag to compare

Fixed

  • Mark package as OS-independent.

Added

  • Support for Python 3.5.
  • Compilation of PyPy wheels on OSX.

0.4.3

01 Mar 15:05
Compare
Choose a tag to compare

Fixed

  • Buffer overflow when running in meta mode on a sequence too small to have any dynamic programming nodes.

0.4.2

07 Feb 17:03
Compare
Choose a tag to compare

Fixed

  • Buffer overflow coming from the node array, caused by an incorrect
    estimation of the node count from the sequence length.

0.4.1

07 Jan 13:35
v0.4.1
Compare
Choose a tag to compare

Removed

  • Python 3.5 from the project metadata (the code was only compatible with
    Python 3.6+ already because of f-strings).

Fixed

0.4.0

06 Jan 14:38
v0.4.0
Compare
Choose a tag to compare

Changed

  • trans_table keyword argument to Pyrodigal.train has been renamed
    to translation_table.

Added

  • Option to change the translation table to any allowed number in Gene.translate
    (#1).

0.3.2

27 Nov 20:40
v0.3.2
Compare
Choose a tag to compare

Fixed

  • Broken compilation of PyPy wheels in Travis-CI.

0.3.1

27 Nov 18:54
v0.3.1
Compare
Choose a tag to compare

Added

  • Link to Zenodo record in README.md.
  • Typing :: Typed classifier to the PyPI metadata.
  • Explicit support for Python 3.9.

Changed

  • Streamlined compilation process when building from source distribution.

0.3.0

07 Sep 14:23
v0.3.0
Compare
Choose a tag to compare

Added

  • Thread-safety for all Pyrodigal methods

Fixed

  • Reduced total amount of memory used to allocated dynamic programming
    nodes for a given sequence.