Skip to content

Releases: althonos/pyrodigal

v1.1.1

22 Jul 13:47
Compare
Choose a tag to compare

Fixed

  • Some cpu_features source files not being included in source distribution.

v1.1.0

09 Jun 18:42
Compare
Choose a tag to compare

Changed

  • OrfFinder.train can now be given more than one sequence argument to train on contigs from an unclosed genome.
  • Updated cpu_features to v0.7.0 and added hardware detection of NEON features on Linux Aarch64 platforms.

v1.0.2

13 May 13:52
Compare
Choose a tag to compare

Fixed

  • Detection of Arm64 platform in setup.py (#16).

v1.0.1

28 Apr 10:32
Compare
Choose a tag to compare

Changed

  • pyrodigal.cli now concatenates training sequences the same way as Prodigal does.

v1.0.0

20 Apr 10:53
Compare
Choose a tag to compare

Stable version, to be published in the Journal of Open-Source Software.

Added

  • pickle protocol implementation for Nodes, TrainingInfo, OrfFinder, Sequence, Masks and Genes objects.
  • Buffer protocol implementation for Sequence, allowing access to raw digits.
  • __eq__ and __repr__ magic methods to Mask objects.

Changed

  • Optimized code used for region masking to avoid searching for the same mask repeatedly.
  • TRANSLATION_TABLES and METAGENOMIC_BINS are now exposed as constants in the top pyrodigal module.
  • Refactored connection scoring into different functions based on the type (start/stop) and strand (direct/reverse) of the node being scored.
  • Changed the growth factor for dynamic arrays to be the same as the one used in CPython list buffers.

v0.7.3

06 Apr 10:01
Compare
Choose a tag to compare

Added

  • Gene.score property to get the gene score as reported in the score data string.

Fixed

  • OrfFinder.find_genes not producing consistent results across runs in meta mode (#13).
  • OrfFinder.find_genes returning Nodes with incomplete score information.

v0.7.2

15 Mar 17:06
Compare
Choose a tag to compare

Changed

  • Improve performance of mer_ndx and score_connection using dedicated implementations with better branch prediction.
  • Mark arguments as const in C code where possible.

Fixed

  • Signatures of Cython classes not displaying properly because of the embedsignature directive.
  • _sequence.h functions not being inlined as expected.

v0.7.1

14 Mar 18:00
Compare
Choose a tag to compare

Changed

  • Rewrite internal Sequence code using inlined functions to increase performance when the strand is known.

Fixed

  • Nodes.copy potentially failing on empty collections after trying to allocate 0 bytes.
  • TestGenes.test_write_scores failing on some machines because of float rounding issues.
  • Gene.translate ignoring the unknown_residue argument value and always using "X".
  • Memory leak in Pyrodigal.train cause by memory not being freed after building the GC frame plot.

v0.7.0

12 Mar 23:45
Compare
Choose a tag to compare

Added

  • Support for setting a custom minimum gene length in pyrodigal.OrfFinder.
  • Genes.write_scores method to write the node scores to a file.
  • Gene.__repr__ and Node.__repr__ methods to display some useful attributes.
  • Sequence.__str__ method to get back a nucleotide string from a Sequence object.

Changed

  • Use a more compact data structure to store Gene data.

Fixed

  • Nodes._calc_orf_gc reading nucleotides after the sequence end when computing GC content for edge nodes.

Removed

  • pyrodigal.Pyrodigal class (use pyrodigal.OrfFinder instead).
  • pyrodigal.Predictions class (functionality merged into pyrodigal.Genes).

0.6.4

23 Dec 16:42
Compare
Choose a tag to compare

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.