File tree Expand file tree Collapse file tree 5 files changed +30
-5
lines changed Expand file tree Collapse file tree 5 files changed +30
-5
lines changed Original file line number Diff line number Diff line change 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+
126Release 2.6-r623 (12 December 2017)
227-----------------------------------
328
Original file line number Diff line number Diff line change @@ -68,9 +68,9 @@ Detailed evaluations are available from the [minimap2 preprint][preprint].
6868Minimap2 is optimized for x86-64 CPUs. You can acquire precompiled binaries from
6969the [ 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```
7575If you want to compile from the source, you need to have a C compiler, GNU make
7676and 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.6-r653-dirty "
9+ #define MM_VERSION "2.7-r654 "
1010
1111#ifdef __linux__
1212#include <sys/resource.h>
Original file line number Diff line number Diff line change 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
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.6 ' ,
26+ version = '2.7 ' ,
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