File tree Expand file tree Collapse file tree 5 files changed +29
-6
lines changed Expand file tree Collapse file tree 5 files changed +29
-6
lines changed Original file line number Diff line number Diff line change 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+
124Release 2.8-r672 (1 February 2018)
225----------------------------------
326
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.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```
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.8-r719-dirty "
9+ #define MM_VERSION "2.9-r720 "
1010
1111#ifdef __linux__
1212#include <sys/resource.h>
Original file line number Diff line number Diff line change 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
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.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' ,
You can’t perform that action at this time.
0 commit comments