File tree Expand file tree Collapse file tree 5 files changed +29
-6
lines changed Expand file tree Collapse file tree 5 files changed +29
-6
lines changed Original file line number Diff line number Diff line change 1+ Release 2.5-r572 (11 November 2017)
2+ -----------------------------------
3+
4+ This release fixes several bugs and brings a couple of minor improvements:
5+
6+ * Fixed a severe bug that leads to incorrect mapping coordinates in rare
7+ corner cases.
8+
9+ * Fixed underestimated mapping quality for chimeric alignments when the whole
10+ query sequence contain many repetitive minimizers, and for chimeric
11+ alignments caused by Z-drop.
12+
13+ * Fixed two bugs in Python binding: incorrect strand field (#57 ) and incorrect
14+ sequence names for Python3 (#55 ).
15+
16+ * Improved mapping accuracy for highly overlapping paired ends.
17+
18+ * Added option -Y to use soft clipping for supplementary alignments (#56 ).
19+
20+ (2.5: 11 November 2017, r572)
21+
22+
23+
124Release 2.4-r555 (6 November 2017)
225----------------------------------
326
Original file line number Diff line number Diff line change 1- [ ![ Release] ( https://img.shields.io/badge/Release-v2.4 -blue.svg?style=flat )] ( https://github.com/lh3/minimap2/releases )
1+ [ ![ Release] ( https://img.shields.io/badge/Release-v2.5 -blue.svg?style=flat )] ( https://github.com/lh3/minimap2/releases )
22[ ![ BioConda] ( https://img.shields.io/conda/vn/bioconda/minimap2.svg?style=flat )] ( https://anaconda.org/bioconda/minimap2 )
33[ ![ PyPI] ( https://img.shields.io/pypi/v/mappy.svg?style=flat )] ( https://pypi.python.org/pypi/mappy )
44[ ![ Python Version] ( https://img.shields.io/pypi/pyversions/mappy.svg?style=flat )] ( https://pypi.python.org/pypi/mappy )
@@ -71,9 +71,9 @@ Detailed evaluations are available from the [minimap2 preprint][preprint].
7171Minimap2 only works on x86-64 CPUs. You can acquire precompiled binaries from
7272the [ release page] [ release ] with:
7373``` sh
74- wget --no-check-certificate -O- https://github.com/lh3/minimap2/releases/download/v2.4 /minimap2-2.4_x64 -linux.tar.bz2 \
74+ curl -L https://github.com/lh3/minimap2/releases/download/v2.5 /minimap2-2.5_x64 -linux.tar.bz2 \
7575 | tar -jxvf -
76- ./minimap2-2.4_x64 -linux/minimap2
76+ ./minimap2-2.5_x64 -linux/minimap2
7777```
7878If you want to compile from the source, you need to have a C compiler, GNU make
7979and zlib development files installed. Then type ` make ` in the source code
Original file line number Diff line number Diff line change 66#include "mmpriv.h"
77#include "getopt.h"
88
9- #define MM_VERSION "2.4-r569-dirty "
9+ #define MM_VERSION "2.5-r572 "
1010
1111#ifdef __linux__
1212#include <sys/resource.h>
Original file line number Diff line number Diff line change 1- .TH minimap2 1 "6 November 2017" "minimap2-2.4 (r555 )" "Bioinformatics tools"
1+ .TH minimap2 1 "11 November 2017" "minimap2-2.5 (r572 )" "Bioinformatics tools"
22.SH NAME
33.PP
44minimap2 - mapping and alignment between collections of DNA sequences
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ def readme():
2323
2424setup (
2525 name = 'mappy' ,
26- version = '2.4 ' ,
26+ version = '2.5 ' ,
2727 url = 'https://github.com/lh3/minimap2' ,
2828 description = 'Minimap2 python binding' ,
2929 long_description = readme (),
You can’t perform that action at this time.
0 commit comments