Skip to content

Commit 79c9cc1

Browse files
committed
Release minimap2-2.30 (r1287)
1 parent ea4c893 commit 79c9cc1

File tree

8 files changed

+24
-9
lines changed

8 files changed

+24
-9
lines changed

NEWS.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
Release 2.30-r1287 (15 June 2025)
2+
---------------------------------
3+
4+
Notable changes:
5+
6+
* Improvement: consolidated `--spsc`.
7+
8+
* Deprecation: subcommands `splice2bed`, `gff2bed`, `gff2junc`, `junceval` and
9+
`exoneval` in `paftools.js` are deprecated by minigff. They will remain
10+
indefinitely for backward compatibility.
11+
12+
(2.30: 15 June 2025, r1287)
13+
14+
15+
116
Release 2.29-r1283 (18 April 2025)
217
----------------------------------
318

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ Detailed evaluations are available from the [minimap2 paper][doi] or the
7777
Minimap2 is optimized for x86-64 CPUs. You can acquire precompiled binaries from
7878
the [release page][release] with:
7979
```sh
80-
curl -L https://github.com/lh3/minimap2/releases/download/v2.29/minimap2-2.29_x64-linux.tar.bz2 | tar -jxvf -
81-
./minimap2-2.29_x64-linux/minimap2
80+
curl -L https://github.com/lh3/minimap2/releases/download/v2.30/minimap2-2.30_x64-linux.tar.bz2 | tar -jxvf -
81+
./minimap2-2.30_x64-linux/minimap2
8282
```
8383
If you want to compile from the source, you need to have a C compiler, GNU make
8484
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.29/minimap2-2.29_x64-linux.tar.bz2 | tar jxf -
35-
cp minimap2-2.29_x64-linux/{minimap2,k8,paftools.js} . # copy executables
34+
curl -L https://github.com/lh3/minimap2/releases/download/v2.30/minimap2-2.30_x64-linux.tar.bz2 | tar jxf -
35+
cp minimap2-2.30_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.29-r1285-dirty"
8+
#define MM_VERSION "2.30-r1287"
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 "18 April 2025" "minimap2-2.29 (r1283)" "Bioinformatics tools"
1+
.TH minimap2 1 "15 June 2025" "minimap2-2.30 (r1287)" "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.29-r1283';
3+
var paftools_version = '2.30-r1287';
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.29'
6+
__version__ = '2.30'
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.29',
26+
version = '2.30',
2727
url = 'https://github.com/lh3/minimap2',
2828
description = 'Minimap2 python binding',
2929
long_description = readme(),

0 commit comments

Comments
 (0)