Skip to content

Commit 3b51827

Browse files
committed
Release minimap2-2.5 (r572)
1 parent 481d823 commit 3b51827

File tree

5 files changed

+29
-6
lines changed

5 files changed

+29
-6
lines changed

NEWS.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
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+
124
Release 2.4-r555 (6 November 2017)
225
----------------------------------
326

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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].
7171
Minimap2 only works on x86-64 CPUs. You can acquire precompiled binaries from
7272
the [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
```
7878
If you want to compile from the source, you need to have a C compiler, GNU make
7979
and zlib development files installed. Then type `make` in the source code

main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
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>

minimap2.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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
44
minimap2 - mapping and alignment between collections of DNA sequences

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def readme():
2323

2424
setup(
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(),

0 commit comments

Comments
 (0)