Released minimap2-2.7 (r654)
This commit is contained in:
parent
dfea113f28
commit
eecc06086f
25
NEWS.md
25
NEWS.md
|
|
@ -1,3 +1,28 @@
|
||||||
|
Release 2.7-r654 (9 January 2018)
|
||||||
|
---------------------------------
|
||||||
|
|
||||||
|
This release fixed a bug in the splice mode and added a few minor features:
|
||||||
|
|
||||||
|
* Fixed a bug that occasionally takes an intron as a long deletion in the
|
||||||
|
splice mode. This was caused by wrong backtracking at the last CIGAR
|
||||||
|
operator. The current fix eliminates the error, but it is not optimal in
|
||||||
|
that it often produces a wrong junction when the last operator is an intron.
|
||||||
|
A future version of minimap2 may improve upon this.
|
||||||
|
|
||||||
|
* Support high-end ARM CPUs that implement the NEON instruction set (#81).
|
||||||
|
This enables minimap2 to work on Raspberry Pi 3 and Odroid XU4.
|
||||||
|
|
||||||
|
* Added a C API to construct a minimizer index from a set of C strings (#80).
|
||||||
|
|
||||||
|
* Check scoring specified on the command line (#79). Due to the 8-bit limit,
|
||||||
|
excessively large score penalties fail minimap2.
|
||||||
|
|
||||||
|
For genomic sequences, minimap2 should give identical alignments to v2.6.
|
||||||
|
|
||||||
|
(2.7: 9 January 2018, r654)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Release 2.6-r623 (12 December 2017)
|
Release 2.6-r623 (12 December 2017)
|
||||||
-----------------------------------
|
-----------------------------------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -68,9 +68,9 @@ Detailed evaluations are available from the [minimap2 preprint][preprint].
|
||||||
Minimap2 is optimized for x86-64 CPUs. You can acquire precompiled binaries from
|
Minimap2 is optimized for x86-64 CPUs. You can acquire precompiled binaries from
|
||||||
the [release page][release] with:
|
the [release page][release] with:
|
||||||
```sh
|
```sh
|
||||||
curl -L https://github.com/lh3/minimap2/releases/download/v2.6/minimap2-2.6_x64-linux.tar.bz2 \
|
curl -L https://github.com/lh3/minimap2/releases/download/v2.7/minimap2-2.7_x64-linux.tar.bz2 \
|
||||||
| tar -jxvf -
|
| tar -jxvf -
|
||||||
./minimap2-2.6_x64-linux/minimap2
|
./minimap2-2.7_x64-linux/minimap2
|
||||||
```
|
```
|
||||||
If you want to compile from the source, you need to have a C compiler, GNU make
|
If you want to compile from the source, you need to have a C compiler, GNU make
|
||||||
and zlib development files installed. Then type `make` in the source code
|
and zlib development files installed. Then type `make` in the source code
|
||||||
|
|
|
||||||
2
main.c
2
main.c
|
|
@ -6,7 +6,7 @@
|
||||||
#include "mmpriv.h"
|
#include "mmpriv.h"
|
||||||
#include "getopt.h"
|
#include "getopt.h"
|
||||||
|
|
||||||
#define MM_VERSION "2.6-r653-dirty"
|
#define MM_VERSION "2.7-r654"
|
||||||
|
|
||||||
#ifdef __linux__
|
#ifdef __linux__
|
||||||
#include <sys/resource.h>
|
#include <sys/resource.h>
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
.TH minimap2 1 "12 December 2017" "minimap2-2.6 (r623)" "Bioinformatics tools"
|
.TH minimap2 1 "9 January 2018" "minimap2-2.7 (r654)" "Bioinformatics tools"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
.PP
|
.PP
|
||||||
minimap2 - mapping and alignment between collections of DNA sequences
|
minimap2 - mapping and alignment between collections of DNA sequences
|
||||||
|
|
|
||||||
2
setup.py
2
setup.py
|
|
@ -23,7 +23,7 @@ def readme():
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name = 'mappy',
|
name = 'mappy',
|
||||||
version = '2.6',
|
version = '2.7',
|
||||||
url = 'https://github.com/lh3/minimap2',
|
url = 'https://github.com/lh3/minimap2',
|
||||||
description = 'Minimap2 python binding',
|
description = 'Minimap2 python binding',
|
||||||
long_description = readme(),
|
long_description = readme(),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue