Release minimap2-2.4 (r555)
This commit is contained in:
parent
1617b87ee1
commit
21a46ba652
40
NEWS.md
40
NEWS.md
|
|
@ -1,3 +1,41 @@
|
||||||
|
Release 2.4-r555 (6 November 2017)
|
||||||
|
----------------------------------
|
||||||
|
|
||||||
|
As is planned, this release focuses on fine tuning the base algorithm. Notable
|
||||||
|
changes include
|
||||||
|
|
||||||
|
* Changed the mapping quality scale to match the scale of BWA-MEM. This makes
|
||||||
|
minimap2 and BWA-MEM achieve similar sensitivity-specificity balance on real
|
||||||
|
short-read data.
|
||||||
|
|
||||||
|
* Improved the accuracy of splice alignment by modeling one additional base
|
||||||
|
close to the GT-AG signal. This model is used by default with `-x splice`.
|
||||||
|
For SIRV control data, however, it is recommended to add `--splice-flank=no`
|
||||||
|
to disable this feature as the SIRV splice signals are slightly different.
|
||||||
|
|
||||||
|
* Tuned the parameters for Nanopore Direct RNA reads. The recommended command
|
||||||
|
line is `-axsplice -k14 -uf` (#46).
|
||||||
|
|
||||||
|
* Fixed a segmentation fault when aligning PacBio reads (#47 and #48). This
|
||||||
|
bug is very rare but it affects all versions of minimap2. It is also
|
||||||
|
recommended to re-index reference genomes created with `map-pb`. For human,
|
||||||
|
two minimizers in an old index are wrong.
|
||||||
|
|
||||||
|
* Changed option `-L` in sync with the final decision of hts-specs: a fake
|
||||||
|
CIGAR takes the form of `<readLen>S<refLen>N`. Note that `-L` only enables
|
||||||
|
future tools to recognize long CIGARs. It is not possible for older tools to
|
||||||
|
work with such alignments in BAM (#43 and #51).
|
||||||
|
|
||||||
|
* Fixed a tiny issue whereby minimap2 may waste 8 bytes per candidate
|
||||||
|
alignment.
|
||||||
|
|
||||||
|
The minimap2 technical note hosted at arXiv has also been updated to reflect
|
||||||
|
recent changes.
|
||||||
|
|
||||||
|
(2.4: 6 November 2017, r555)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Release 2.3-r531 (22 October 2017)
|
Release 2.3-r531 (22 October 2017)
|
||||||
----------------------------------
|
----------------------------------
|
||||||
|
|
||||||
|
|
@ -26,7 +64,7 @@ This release come with many improvements and bug fixes:
|
||||||
|
|
||||||
This release has implemented all the major features I planned five months ago,
|
This release has implemented all the major features I planned five months ago,
|
||||||
with the addition of spliced long-read alignment. The next couple of releases
|
with the addition of spliced long-read alignment. The next couple of releases
|
||||||
will focus on fine tuning of base algorithms.
|
will focus on fine tuning of the base algorithms.
|
||||||
|
|
||||||
(2.3: 22 October 2017, r531)
|
(2.3: 22 October 2017, r531)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,10 @@
|
||||||
[](https://github.com/lh3/minimap2/releases)
|
[](https://github.com/lh3/minimap2/releases)
|
||||||
[](https://anaconda.org/bioconda/minimap2)
|
[](https://anaconda.org/bioconda/minimap2)
|
||||||
[](https://pypi.python.org/pypi/mappy)
|
[](https://pypi.python.org/pypi/mappy)
|
||||||
[](https://pypi.python.org/pypi/mappy)
|
[](https://pypi.python.org/pypi/mappy)
|
||||||
[](LICENSE.txt)
|
[](LICENSE.txt)
|
||||||
[](https://travis-ci.org/lh3/minimap2)
|
[](https://travis-ci.org/lh3/minimap2)
|
||||||
<!-- [](https://github.com/lh3/minimap2/releases) -->
|
[](https://github.com/lh3/minimap2/releases)
|
||||||
## <a name="started"></a>Getting Started
|
## <a name="started"></a>Getting Started
|
||||||
```sh
|
```sh
|
||||||
git clone https://github.com/lh3/minimap2
|
git clone https://github.com/lh3/minimap2
|
||||||
|
|
@ -71,9 +71,9 @@ Detailed evaluations are available from the [minimap2 preprint][preprint].
|
||||||
Minimap2 only works on x86-64 CPUs. You can acquire precompiled binaries from
|
Minimap2 only works on x86-64 CPUs. You can acquire precompiled binaries from
|
||||||
the [release page][release] with:
|
the [release page][release] with:
|
||||||
```sh
|
```sh
|
||||||
wget --no-check-certificate -O- https://github.com/lh3/minimap2/releases/download/v2.3/minimap2-2.3_x64-linux.tar.bz2 \
|
wget --no-check-certificate -O- https://github.com/lh3/minimap2/releases/download/v2.4/minimap2-2.4_x64-linux.tar.bz2 \
|
||||||
| tar -jxvf -
|
| tar -jxvf -
|
||||||
./minimap2-2.3_x64-linux/minimap2
|
./minimap2-2.4_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.3-r552-dirty"
|
#define MM_VERSION "2.4-r555"
|
||||||
|
|
||||||
#ifdef __linux__
|
#ifdef __linux__
|
||||||
#include <sys/resource.h>
|
#include <sys/resource.h>
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
.TH minimap2 1 "27 October 2017" "minimap2-2.3-dirty (r537)" "Bioinformatics tools"
|
.TH minimap2 1 "6 November 2017" "minimap2-2.4 (r555)" "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
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,6 @@ cdef extern from "minimap.h":
|
||||||
float mask_level
|
float mask_level
|
||||||
float pri_ratio
|
float pri_ratio
|
||||||
int best_n
|
int best_n
|
||||||
float min_iden
|
|
||||||
int max_join_long, max_join_short
|
int max_join_long, max_join_short
|
||||||
int min_join_flank_sc
|
int min_join_flank_sc
|
||||||
int a, b, q, e, q2, e2
|
int a, b, q, e, q2, e2
|
||||||
|
|
|
||||||
2
setup.py
2
setup.py
|
|
@ -23,7 +23,7 @@ def readme():
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name = 'mappy',
|
name = 'mappy',
|
||||||
version = '2.3',
|
version = '2.4',
|
||||||
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