Release minimap2-2.9 (r720)
This commit is contained in:
parent
83c57a9d98
commit
eeb314edd6
23
NEWS.md
23
NEWS.md
|
|
@ -1,3 +1,26 @@
|
|||
Release 2.9-r720 (23 February 2018)
|
||||
-----------------------------------
|
||||
|
||||
This release fixed multiple minor bugs.
|
||||
|
||||
* Fixed two bugs that lead to incorrect inversion alignment. Also improved the
|
||||
sensitivity to small inversions by using double Z-drop cutoff (#112).
|
||||
|
||||
* Fixed an issue that may cause the end of a query sequence unmapped (#104).
|
||||
|
||||
* Added a mappy API to retrieve sequences from the index (#126) and to reverse
|
||||
complement DNA sequences. Fixed a bug where the `best_n` parameter did not
|
||||
work (#117).
|
||||
|
||||
* Avoided segmentation fault given incorrect FASTQ input (#111).
|
||||
|
||||
* Combined all auxiliary javascripts to paftools.js. Fixed several bugs in
|
||||
these scripts at the same time.
|
||||
|
||||
(2.9: 24 February 2018, r720)
|
||||
|
||||
|
||||
|
||||
Release 2.8-r672 (1 February 2018)
|
||||
----------------------------------
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
the [release page][release] with:
|
||||
```sh
|
||||
curl -L https://github.com/lh3/minimap2/releases/download/v2.8/minimap2-2.8_x64-linux.tar.bz2 \
|
||||
curl -L https://github.com/lh3/minimap2/releases/download/v2.9/minimap2-2.9_x64-linux.tar.bz2 \
|
||||
| tar -jxvf -
|
||||
./minimap2-2.8_x64-linux/minimap2
|
||||
./minimap2-2.9_x64-linux/minimap2
|
||||
```
|
||||
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
|
||||
|
|
|
|||
2
main.c
2
main.c
|
|
@ -6,7 +6,7 @@
|
|||
#include "mmpriv.h"
|
||||
#include "getopt.h"
|
||||
|
||||
#define MM_VERSION "2.8-r719-dirty"
|
||||
#define MM_VERSION "2.9-r720"
|
||||
|
||||
#ifdef __linux__
|
||||
#include <sys/resource.h>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
.TH minimap2 1 "1 February 2018" "minimap2-2.8 (r672)" "Bioinformatics tools"
|
||||
.TH minimap2 1 "24 February 2018" "minimap2-2.9 (r720)" "Bioinformatics tools"
|
||||
.SH NAME
|
||||
.PP
|
||||
minimap2 - mapping and alignment between collections of DNA sequences
|
||||
|
|
|
|||
4
setup.py
4
setup.py
|
|
@ -23,7 +23,7 @@ def readme():
|
|||
|
||||
setup(
|
||||
name = 'mappy',
|
||||
version = '2.8',
|
||||
version = '2.9',
|
||||
url = 'https://github.com/lh3/minimap2',
|
||||
description = 'Minimap2 python binding',
|
||||
long_description = readme(),
|
||||
|
|
@ -43,7 +43,7 @@ setup(
|
|||
include_dirs = ['.'],
|
||||
libraries = ['z', 'm', 'pthread'])],
|
||||
classifiers = [
|
||||
'Development Status :: 4 - Beta',
|
||||
'Development Status :: 5 - Production/Stable',
|
||||
'License :: OSI Approved :: MIT License',
|
||||
'Operating System :: POSIX',
|
||||
'Programming Language :: C',
|
||||
|
|
|
|||
Loading…
Reference in New Issue