diff --git a/README.md b/README.md index 84cd573f7..a79fb42b7 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Flye assembler [![BioConda Install](https://img.shields.io/conda/dn/bioconda/flye.svg?style=flag&label=BioConda%20install)](https://anaconda.org/bioconda/flye) -### Version: 2.9.1 +### Version: 2.9.2 Flye is a de novo assembler for single-molecule sequencing reads, such as those produced by PacBio and Oxford Nanopore Technologies. @@ -26,6 +26,11 @@ Manuals Latest updates -------------- +### Flye 2.9.2 release (18 March 2022) +* Update to minimap 2.24 + using HiFi and Kit14 parameters for faster alignment +* Fixed a few small bugs and corner cases +* Polisher now outputs read depth for each base of consensus (can be used as confidence measure) + ### Flye 2.9.1 release (07 Aug 2022) * New option --no-alt-contigs to remove all non-primary contigs from the assembly * Fixed crash on MacOS with Python 3.8+ diff --git a/docs/NEWS.md b/docs/NEWS.md index 662f0c1f2..5407ce159 100644 --- a/docs/NEWS.md +++ b/docs/NEWS.md @@ -1,3 +1,9 @@ +Flye 2.9.2 release (18 March 2022) +================================= +* Update to minimap 2.24 + using HiFi and Kit14 parameters for faster alignment +* Fixed a few small bugs and corner cases +* Polisher now outputs read depth for each base of consensus (can be used as confidence measure) + Flye 2.9.1 release (07 Aug 2022) =============================== * New option --no-alt-contigs to remove all non-primary contigs from the assembly diff --git a/flye/__build__.py b/flye/__build__.py index e7e4c36eb..5c497f71a 100644 --- a/flye/__build__.py +++ b/flye/__build__.py @@ -1 +1 @@ -__build__ = 1784 +__build__ = 1785 diff --git a/flye/__version__.py b/flye/__version__.py index 334087f85..4f1e6b1b5 100644 --- a/flye/__version__.py +++ b/flye/__version__.py @@ -1 +1 @@ -__version__ = "2.9.1" +__version__ = "2.9.2"