Skip to content

Commit eecc060

Browse files
committed
Released minimap2-2.7 (r654)
1 parent dfea113 commit eecc060

File tree

5 files changed

+30
-5
lines changed

5 files changed

+30
-5
lines changed

NEWS.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
Release 2.7-r654 (9 January 2018)
2+
---------------------------------
3+
4+
This release fixed a bug in the splice mode and added a few minor features:
5+
6+
* Fixed a bug that occasionally takes an intron as a long deletion in the
7+
splice mode. This was caused by wrong backtracking at the last CIGAR
8+
operator. The current fix eliminates the error, but it is not optimal in
9+
that it often produces a wrong junction when the last operator is an intron.
10+
A future version of minimap2 may improve upon this.
11+
12+
* Support high-end ARM CPUs that implement the NEON instruction set (#81).
13+
This enables minimap2 to work on Raspberry Pi 3 and Odroid XU4.
14+
15+
* Added a C API to construct a minimizer index from a set of C strings (#80).
16+
17+
* Check scoring specified on the command line (#79). Due to the 8-bit limit,
18+
excessively large score penalties fail minimap2.
19+
20+
For genomic sequences, minimap2 should give identical alignments to v2.6.
21+
22+
(2.7: 9 January 2018, r654)
23+
24+
25+
126
Release 2.6-r623 (12 December 2017)
227
-----------------------------------
328

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.6/minimap2-2.6_x64-linux.tar.bz2 \
71+
curl -L https://github.com/lh3/minimap2/releases/download/v2.7/minimap2-2.7_x64-linux.tar.bz2 \
7272
| tar -jxvf -
73-
./minimap2-2.6_x64-linux/minimap2
73+
./minimap2-2.7_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.6-r653-dirty"
9+
#define MM_VERSION "2.7-r654"
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 "12 December 2017" "minimap2-2.6 (r623)" "Bioinformatics tools"
1+
.TH minimap2 1 "9 January 2018" "minimap2-2.7 (r654)" "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.6',
26+
version = '2.7',
2727
url = 'https://github.com/lh3/minimap2',
2828
description = 'Minimap2 python binding',
2929
long_description = readme(),

0 commit comments

Comments
 (0)