Skip to content

Commit b6ff332

Browse files
committed
Release minimap2-2.18 (r1015)
1 parent 77abafa commit b6ff332

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

NEWS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Changes to paftools.js:
7474

7575
Although given the many bug fixes and minor improvements, the core algorithm
7676
stays the same. This version of minimap2 produces nearly identical alignments
77-
to v2.17 except corner cases.
77+
to v2.17 except very rare corner cases.
7878

7979
Now unimap is recommended over minimap2 for aligning long contigs against a
8080
reference genome. It often takes less wall-clock time and is much more

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ Detailed evaluations are available from the [minimap2 paper][doi] or the
7676
Minimap2 is optimized for x86-64 CPUs. You can acquire precompiled binaries from
7777
the [release page][release] with:
7878
```sh
79-
curl -L https://github.com/lh3/minimap2/releases/download/v2.17/minimap2-2.17_x64-linux.tar.bz2 | tar -jxvf -
80-
./minimap2-2.17_x64-linux/minimap2
79+
curl -L https://github.com/lh3/minimap2/releases/download/v2.18/minimap2-2.18_x64-linux.tar.bz2 | tar -jxvf -
80+
./minimap2-2.18_x64-linux/minimap2
8181
```
8282
If you want to compile from the source, you need to have a C compiler, GNU make
8383
and zlib development files installed. Then type `make` in the source code

cookbook.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ To acquire the data used in this cookbook and to install minimap2 and paftools,
3131
please follow the command lines below:
3232
```sh
3333
# install minimap2 executables
34-
curl -L https://github.com/lh3/minimap2/releases/download/v2.17/minimap2-2.17_x64-linux.tar.bz2 | tar jxf -
35-
cp minimap2-2.17_x64-linux/{minimap2,k8,paftools.js} . # copy executables
34+
curl -L https://github.com/lh3/minimap2/releases/download/v2.18/minimap2-2.18_x64-linux.tar.bz2 | tar jxf -
35+
cp minimap2-2.18_x64-linux/{minimap2,k8,paftools.js} . # copy executables
3636
export PATH="$PATH:"`pwd` # put the current directory on PATH
3737
# download example datasets
3838
curl -L https://github.com/lh3/minimap2/releases/download/v2.10/cookbook-data.tgz | tar zxf -

main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#include "mmpriv.h"
88
#include "ketopt.h"
99

10-
#define MM_VERSION "2.17-r1013-dirty"
10+
#define MM_VERSION "2.18-r1015"
1111

1212
#ifdef __linux__
1313
#include <sys/resource.h>

minimap2.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH minimap2 1 "4 May 2019" "minimap2-2.17 (r941)" "Bioinformatics tools"
1+
.TH minimap2 1 "9 April 2021" "minimap2-2.18 (r1015)" "Bioinformatics tools"
22
.SH NAME
33
.PP
44
minimap2 - mapping and alignment between collections of DNA sequences

misc/paftools.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env k8
22

3-
var paftools_version = '2.17-r982-dirty';
3+
var paftools_version = '2.18-r1015';
44

55
/*****************************
66
***** Library functions *****

python/mappy.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ from libc.stdlib cimport free
33
cimport cmappy
44
import sys
55

6-
__version__ = '2.17'
6+
__version__ = '2.18'
77

88
cmappy.mm_reset_timer()
99

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def readme():
2323

2424
setup(
2525
name = 'mappy',
26-
version = '2.17',
26+
version = '2.18',
2727
url = 'https://github.com/lh3/minimap2',
2828
description = 'Minimap2 python binding',
2929
long_description = readme(),

0 commit comments

Comments
 (0)