Skip to content

Commit fe35e67

Browse files
committed
Release minimap2-2.24 (r1122)
1 parent e25aa5e commit fe35e67

File tree

8 files changed

+23
-9
lines changed

8 files changed

+23
-9
lines changed

NEWS.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
Release 2.24-r1122 (26 December 2021)
2+
-------------------------------------
3+
4+
This release improves alignment around long poorly aligned regions. Older
5+
minimap2 may chain through such regions in rare cases which may result in
6+
missing alignments later. The issue has become worse since the the change of
7+
the chaining algorithm in v2.19. v2.23 implements an incomplete remedy. This
8+
release provides a better solution with a X-drop-like heuristic and by enabling
9+
two-bandwidth chaining in the assembly mode.
10+
11+
(2.24: 26 December 2021, r1122)
12+
13+
14+
115
Release 2.23-r1111 (18 November 2021)
216
-------------------------------------
317

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ Detailed evaluations are available from the [minimap2 paper][doi] or the
7474
Minimap2 is optimized for x86-64 CPUs. You can acquire precompiled binaries from
7575
the [release page][release] with:
7676
```sh
77-
curl -L https://github.com/lh3/minimap2/releases/download/v2.23/minimap2-2.23_x64-linux.tar.bz2 | tar -jxvf -
78-
./minimap2-2.23_x64-linux/minimap2
77+
curl -L https://github.com/lh3/minimap2/releases/download/v2.24/minimap2-2.24_x64-linux.tar.bz2 | tar -jxvf -
78+
./minimap2-2.24_x64-linux/minimap2
7979
```
8080
If you want to compile from the source, you need to have a C compiler, GNU make
8181
and zlib development files installed. Then type `make` in the source code

cookbook.md

+2-2
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.23/minimap2-2.23_x64-linux.tar.bz2 | tar jxf -
35-
cp minimap2-2.23_x64-linux/{minimap2,k8,paftools.js} . # copy executables
34+
curl -L https://github.com/lh3/minimap2/releases/download/v2.24/minimap2-2.24_x64-linux.tar.bz2 | tar jxf -
35+
cp minimap2-2.24_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

+1-1
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.23-r1119-dirty"
10+
#define MM_VERSION "2.24-r1122"
1111

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

minimap2.1

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH minimap2 1 "18 December 2021" "minimap2-2.24 (r1121)" "Bioinformatics tools"
1+
.TH minimap2 1 "18 December 2021" "minimap2-2.24 (r1122)" "Bioinformatics tools"
22
.SH NAME
33
.PP
44
minimap2 - mapping and alignment between collections of DNA sequences

misc/paftools.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env k8
22

3-
var paftools_version = '2.23-r1111';
3+
var paftools_version = '2.24-r1122';
44

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

python/mappy.pyx

+1-1
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.23'
6+
__version__ = '2.24'
77

88
cmappy.mm_reset_timer()
99

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def readme():
2323

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

0 commit comments

Comments
 (0)