Skip to content

Commit b676250

Browse files
committed
Release minimap2-2.27 (r1193)
1 parent 9667468 commit b676250

File tree

8 files changed

+21
-16
lines changed

8 files changed

+21
-16
lines changed

NEWS.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Release 2.27-rXXXX (XX March 2024)
1+
Release 2.27-r1193 (12 March 2024)
22
----------------------------------
33

44
Notable changes to minimap2:
@@ -8,14 +8,17 @@ Notable changes to minimap2:
88
clear if this preset also works well for PacBio HiFi reads.
99

1010
* New feature: added the `map-iclr` preset for Illumina Complete Long Reads
11-
(#1069), provided by Illumina developers. This change also added option `-b`
12-
to specify mismatch penalty for transition mutations.
11+
(#1069), provided by Illumina developers.
1312

14-
* New feature: added option `--ds` to generate a new `ds:Z` tag. `ds`
13+
* New feature: added option `-b` to specify mismatch penalty for base
14+
transitions (i.e. A-to-G or C-to-T changes).
15+
16+
* New feature: added option `--ds` to generate a new `ds:Z` tag that
1517
indicates uncertainty in INDEL positions. It is an extension to `cs`. The
1618
`mgutils-es6.js` script in minigraph parses `ds`.
1719

18-
* Bugfix: avoided a NULL pointer dereference (#1154).
20+
* Bugfix: avoided a NULL pointer dereference (#1154). This would not have an
21+
effect on most systems but would still be good to fix.
1922

2023
* Bugfix: reverted the value of `ms:i` to pre-2.22 versions (#1146). This was
2124
an oversight. See fcd4df2 for details.
@@ -27,7 +30,9 @@ Notable changes to paftools.js and mappy:
2730
* Bugfix: fixed several compatibility issues with k8 v1.0 (#1161 and #1166).
2831
Subcommands "call", "pbsim2fq" and "mason2fq" were not working with v1.0.
2932

30-
(2.27: XX March 2024, rXXXX)
33+
Minimap2 should output identical alignments to v2.26, except the ms tag.
34+
35+
(2.27: 12 March 2024, r1193)
3136

3237

3338

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ cd minimap2 && make
1515
./minimap2 -ax map-pb ref.fa pacbio.fq.gz > aln.sam # PacBio CLR genomic reads
1616
./minimap2 -ax map-ont ref.fa ont.fq.gz > aln.sam # Oxford Nanopore genomic reads
1717
./minimap2 -ax map-hifi ref.fa pacbio-ccs.fq.gz > aln.sam # PacBio HiFi/CCS genomic reads (v2.19 or later)
18-
./minimap2 -ax asm20 ref.fa pacbio-ccs.fq.gz > aln.sam # PacBio HiFi/CCS genomic reads (v2.18 or earlier)
18+
./minimap2 -ax lr:hq ref.fa ont-Q20.fq.gz > aln.sam # Nanopore Q20 genomic reads (v2.27 or later)
1919
./minimap2 -ax sr ref.fa read1.fa read2.fa > aln.sam # short genomic paired-end reads
2020
./minimap2 -ax splice ref.fa rna-reads.fa > aln.sam # spliced long reads (strand unknown)
2121
./minimap2 -ax splice -uf -k14 ref.fa reads.fa > aln.sam # noisy Nanopore Direct RNA-seq
@@ -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.26/minimap2-2.26_x64-linux.tar.bz2 | tar -jxvf -
78-
./minimap2-2.26_x64-linux/minimap2
77+
curl -L https://github.com/lh3/minimap2/releases/download/v2.27/minimap2-2.27_x64-linux.tar.bz2 | tar -jxvf -
78+
./minimap2-2.27_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

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

minimap.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#include <stdio.h>
66
#include <sys/types.h>
77

8-
#define MM_VERSION "2.26-r1190-dirty"
8+
#define MM_VERSION "2.27-r1193"
99

1010
#define MM_F_NO_DIAG (0x001LL) // no exact diagonal hit
1111
#define MM_F_NO_DUAL (0x002LL) // skip pairs where query name is lexicographically larger than target name

minimap2.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH minimap2 1 "29 April 2023" "minimap2-2.26 (r1175)" "Bioinformatics tools"
1+
.TH minimap2 1 "12 March 2024" "minimap2-2.27 (r1193)" "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.26-r1191-dirty';
3+
var paftools_version = '2.27-r1193';
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.26'
6+
__version__ = '2.27'
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.26',
26+
version = '2.27',
2727
url = 'https://github.com/lh3/minimap2',
2828
description = 'Minimap2 python binding',
2929
long_description = readme(),

0 commit comments

Comments
 (0)