Skip to content

Commit 581f2d7

Browse files
committed
Release minimap2-2.21 (r1071)
1 parent 52dbd43 commit 581f2d7

File tree

8 files changed

+22
-11
lines changed

8 files changed

+22
-11
lines changed

Diff for: NEWS.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
Release 2.21-r1071 (6 July 2021)
2+
--------------------------------
3+
4+
This release fixed a regression in short-read mapping introduced in v2.19
5+
(#776). It also fixed invalid comparisons of uninitialized variables, though
6+
these are harmless (#752). Long-read alignment should be identical to v2.20.
7+
8+
(2.21: 6 July 2021)
9+
10+
11+
112
Release 2.20-r1061 (27 May 2021)
213
--------------------------------
314

Diff for: 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.20/minimap2-2.20_x64-linux.tar.bz2 | tar -jxvf -
78-
./minimap2-2.20_x64-linux/minimap2
77+
curl -L https://github.com/lh3/minimap2/releases/download/v2.21/minimap2-2.21_x64-linux.tar.bz2 | tar -jxvf -
78+
./minimap2-2.21_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

Diff for: 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.20/minimap2-2.20_x64-linux.tar.bz2 | tar jxf -
35-
cp minimap2-2.20_x64-linux/{minimap2,k8,paftools.js} . # copy executables
34+
curl -L https://github.com/lh3/minimap2/releases/download/v2.21/minimap2-2.21_x64-linux.tar.bz2 | tar jxf -
35+
cp minimap2-2.21_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 -

Diff for: 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.20-r1080-dirty"
10+
#define MM_VERSION "2.21-r1071"
1111

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

Diff for: minimap2.1

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH minimap2 1 "27 May 2021" "minimap2-2.20 (r1061)" "Bioinformatics tools"
1+
.TH minimap2 1 "6 July 2021" "minimap2-2.21 (r1071)" "Bioinformatics tools"
22
.SH NAME
33
.PP
44
minimap2 - mapping and alignment between collections of DNA sequences
@@ -592,8 +592,8 @@ Long-read splice alignment for PacBio CCS reads
592592
.B sr
593593
Short single-end reads without splicing
594594
.RB ( -k21
595-
.B -w11 --sr --frag=yes -A2 -B8 -O12,32 -E2,1 -r50 -p.5 -N20 -f1000,5000 -n2 -m20
596-
.B -s40 -g200 -2K50m --heap-sort=yes
595+
.B -w11 --sr --frag=yes -A2 -B8 -O12,32 -E2,1 -r100 -p.5 -N20 -f1000,5000 -n2 -m20
596+
.B -s40 -g100 -2K50m --heap-sort=yes
597597
.BR --secondary=no ).
598598
.TP
599599
.B ava-pb

Diff for: 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.20-r1061';
3+
var paftools_version = '2.21-r1071';
44

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

Diff for: 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.20'
6+
__version__ = '2.21'
77

88
cmappy.mm_reset_timer()
99

Diff for: 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.20',
26+
version = '2.21',
2727
url = 'https://github.com/lh3/minimap2',
2828
description = 'Minimap2 python binding',
2929
long_description = readme(),

0 commit comments

Comments
 (0)