All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
v0.6.1 - 2024-01-12
- Deployment to AUR from GitHub Actions.
- Incorrect compile actions in CMake files causing compilation failures with older CMake versions.
- Reduce source distribution size by excluding unneeded vendored files.
v0.6.0 - 2024-10-22
- Rewrite package build using
scikit-build-core. - Update documentation to use the PyData theme.
- Bump embedded
cpu-featureslibrary tov0.9.0.
- Support for Python 3.13.
- Null pointer dereference in FASTA parser deallocation.
- Support for Python 3.6.
v0.5.1 - 2024-02-20
- Pre-compiled wheels for Python 3.12 and PyPy 3.10.
- Use NEON and SSE2 unconditionally on platforms where they are available by default.
v0.5.0 - 2023-07-22
- Bump Cython dependency to
v3.0.
- Add missing signature of
Sketch.indexto type stubs. - PyPy builds failing on missing
PyInterpreterState_GetIDfunction.
v0.4.1 - 2022-08-20
- Use lists instead of arrays to store state of
Minimizerswhen pickling. - Skip serialization of minimizer index to reduce total state size.
- Make
Mapper.query_draftandMapper.query_genomereturn hits sorted by identity in descending order.
v0.4.0 - 2022-08-04
- Multi-threaded computation of fragment mapping in
Mapper.query_draftandMapper.query_genome.
- NEON-specific compile flags in
setup.pyfor Aarch64 target platforms. - Broken compilation for Arm platforms because of missing header guards.
v0.3.1 - 2022-07-22
- Slightly improve documentation in some classes.
- Sphinx documentation for the project hosted on ReadTheDocs.
- Links and instructions to install package from the Bioconda channel.
v0.3.0 - 2022-07-17
pickleprotocol implementation toMapperandSketchvia__getstate__and__setstate__.Minimizersclass to access the minimizers of aSketchorMapperobject.
- Make
SketcherandMapperfinal. - Prevent direct instantiation of
Mapperobjects. - Update
Mapper._query_draftto recycle memory between fragments. - Vendor
Boost::mathheaders (v1.79) to allow compiling without depdendencies.
- Broken compilation of
_fastaniextension module asuniversal2binaries on MacOS.
v0.2.1 - 2021-06-20
- Missing header files in the
tar.gzdistribution, preventing compilation of the wheel from source.
v0.2.0 - 2021-06-20
Sketch.clearmethod to remove all sequences currently in aSketchand reset the list of minimizers.- SIMD code to read and reverse-complement the input sequences efficiently on supported platforms (x86-64 with SSE2 or SSSE3, and ARM with NEON).
- Split the
Sketchtype in two depending on whether the object is at the sketching stage (Sketch) or at the querying stage (Mapper). Sketch.add_genome,Sketch.add_draft,Mapper.query_genomeandMapper.query_draftcan now be passed a Unicode string for the sequence.
- Integer underflow causing minimizers out of the block window to be added to the final minimizers list.
v0.1.2 - 2021-06-15
- Querying functions now release GIL to allow efficient parallel querying.
v0.1.1 - 2021-06-13
- Source distribution missing Cython and C++ sources, thus preventing compilation.
v0.1.0 - 2021-06-13
Initial release.