Skip to content

Commit eeb314e

Browse files
committed
Release minimap2-2.9 (r720)
1 parent 83c57a9 commit eeb314e

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.9-r720 (23 February 2018)
2+
-----------------------------------
3+
4+
This release fixed multiple minor bugs.
5+
6+
* Fixed two bugs that lead to incorrect inversion alignment. Also improved the
7+
sensitivity to small inversions by using double Z-drop cutoff (#112).
8+
9+
* Fixed an issue that may cause the end of a query sequence unmapped (#104).
10+
11+
* Added a mappy API to retrieve sequences from the index (#126) and to reverse
12+
complement DNA sequences. Fixed a bug where the `best_n` parameter did not
13+
work (#117).
14+
15+
* Avoided segmentation fault given incorrect FASTQ input (#111).
16+
17+
* Combined all auxiliary javascripts to paftools.js. Fixed several bugs in
18+
these scripts at the same time.
19+
20+
(2.9: 24 February 2018, r720)
21+
22+
23+
124
Release 2.8-r672 (1 February 2018)
225
----------------------------------
326

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@ Detailed evaluations are available from the [minimap2 preprint][preprint].
6868
Minimap2 is optimized for x86-64 CPUs. You can acquire precompiled binaries from
6969
the [release page][release] with:
7070
```sh
71-
curl -L https://github.com/lh3/minimap2/releases/download/v2.8/minimap2-2.8_x64-linux.tar.bz2 \
71+
curl -L https://github.com/lh3/minimap2/releases/download/v2.9/minimap2-2.9_x64-linux.tar.bz2 \
7272
| tar -jxvf -
73-
./minimap2-2.8_x64-linux/minimap2
73+
./minimap2-2.9_x64-linux/minimap2
7474
```
7575
If you want to compile from the source, you need to have a C compiler, GNU make
7676
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.8-r719-dirty"
9+
#define MM_VERSION "2.9-r720"
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 "1 February 2018" "minimap2-2.8 (r672)" "Bioinformatics tools"
1+
.TH minimap2 1 "24 February 2018" "minimap2-2.9 (r720)" "Bioinformatics tools"
22
.SH NAME
33
.PP
44
minimap2 - mapping and alignment between collections of DNA sequences

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def readme():
2323

2424
setup(
2525
name = 'mappy',
26-
version = '2.8',
26+
version = '2.9',
2727
url = 'https://github.com/lh3/minimap2',
2828
description = 'Minimap2 python binding',
2929
long_description = readme(),
@@ -43,7 +43,7 @@ def readme():
4343
include_dirs = ['.'],
4444
libraries = ['z', 'm', 'pthread'])],
4545
classifiers = [
46-
'Development Status :: 4 - Beta',
46+
'Development Status :: 5 - Production/Stable',
4747
'License :: OSI Approved :: MIT License',
4848
'Operating System :: POSIX',
4949
'Programming Language :: C',

0 commit comments

Comments
 (0)