Skip to content

Commit fc855eb

Browse files
committed
VSEARCH 2.30.3
1 parent f1cef45 commit fc855eb

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Most of the nucleotide based commands and options in USEARCH version 7 are suppo
3939

4040
## Getting Help
4141

42-
If you can't find an answer in [online documentation](https://torognes.github.io/vsearch/), or in the [manpage](https://github.com/torognes/vsearch/releases/download/v2.30.2/vsearch_manual.pdf), please visit the [VSEARCH Web Forum](https://groups.google.com/forum/#!forum/vsearch-forum) to post a question or start a discussion.
42+
If you can't find an answer in [online documentation](https://torognes.github.io/vsearch/), or in the [manpage](https://github.com/torognes/vsearch/releases/download/v2.30.3/vsearch_manual.pdf), please visit the [VSEARCH Web Forum](https://groups.google.com/forum/#!forum/vsearch-forum) to post a question or start a discussion.
4343

4444
## Example
4545

@@ -52,9 +52,9 @@ In the example below, VSEARCH will identify sequences in the file database.fsa t
5252
**Source distribution** To download the source distribution from a [release](https://github.com/torognes/vsearch/releases) and build the executable and the documentation, use the following commands:
5353

5454
```
55-
wget https://github.com/torognes/vsearch/archive/v2.30.2.tar.gz
56-
tar xzf v2.30.2.tar.gz
57-
cd vsearch-2.30.2
55+
wget https://github.com/torognes/vsearch/archive/v2.30.3.tar.gz
56+
tar xzf v2.30.3.tar.gz
57+
cd vsearch-2.30.3
5858
./autogen.sh
5959
./configure CFLAGS="-O2" CXXFLAGS="-O2"
6060
make ARFLAGS="cr"
@@ -91,7 +91,7 @@ wget https://github.com/torognes/vsearch/releases/download/v{VERSION}/vsearch-{V
9191
tar xzf vsearch-{VERSION}-{OS}-{ARCH}.tar.gz
9292
```
9393

94-
Replace `{VERSION}` with the VSEARCH version number (e.g. `2.30.2`), `{OS}` with the target operating system (`linux` or `macos`), and `{ARCH}` with the architecture (`x86_64`, `aarch64`, `ppc64le`, `riscv64`, or `mips64el`). You could add `-static` after `{ARCH}` to get a statically compiled version for Linux (except x86_64). The name of the binary for the RHEL 7 and CentOS 7 Linux distributions ends in `-ubi7`.
94+
Replace `{VERSION}` with the VSEARCH version number (e.g. `2.30.3`), `{OS}` with the target operating system (`linux` or `macos`), and `{ARCH}` with the architecture (`x86_64`, `aarch64`, `ppc64le`, `riscv64`, or `mips64el`). You could add `-static` after `{ARCH}` to get a statically compiled version for Linux (except x86_64). The name of the binary for the RHEL 7 and CentOS 7 Linux distributions ends in `-ubi7`.
9595

9696
Or, if you are using Windows, download and extract (unzip) the contents of this file:
9797

@@ -115,7 +115,7 @@ and `zlib1.dll` files required for reading compressed input
115115
files. These DLL's have been obtained for mingw-w64 from the MSYS2
116116
platform.
117117

118-
**Documentation:** The VSEARCH user's manual is available in the `man` folder in the form of a [man page](https://github.com/torognes/vsearch/blob/master/man/vsearch.1). A pdf version ([vsearch_manual.pdf](https://github.com/torognes/vsearch/releases/download/v2.30.2/vsearch_manual.pdf)) will be generated by `make`. To install the manpage manually, copy the `vsearch.1` file or a create a symbolic link to `vsearch.1` in a folder included in your `$MANPATH`. The manual in both formats is also available with the binary distribution. The manual in PDF form ([vsearch_manual.pdf](https://github.com/torognes/vsearch/releases/download/v2.30.2/vsearch_manual.pdf)) is also attached to the latest [release](https://github.com/torognes/vsearch/releases).
118+
**Documentation:** The VSEARCH user's manual is available in the `man` folder in the form of a [man page](https://github.com/torognes/vsearch/blob/master/man/vsearch.1). A pdf version ([vsearch_manual.pdf](https://github.com/torognes/vsearch/releases/download/v2.30.3/vsearch_manual.pdf)) will be generated by `make`. To install the manpage manually, copy the `vsearch.1` file or a create a symbolic link to `vsearch.1` in a folder included in your `$MANPATH`. The manual in both formats is also available with the binary distribution. The manual in PDF form ([vsearch_manual.pdf](https://github.com/torognes/vsearch/releases/download/v2.30.3/vsearch_manual.pdf)) is also attached to the latest [release](https://github.com/torognes/vsearch/releases).
119119

120120

121121
## Packages, plugins, and wrappers

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Process this file with autoconf to produce a configure script.
33

44
AC_PREREQ([2.63])
5-
AC_INIT([vsearch], [2.30.2], [[email protected]], [vsearch], [https://github.com/torognes/vsearch])
5+
AC_INIT([vsearch], [2.30.3], [[email protected]], [vsearch], [https://github.com/torognes/vsearch])
66
AC_CANONICAL_TARGET
77
AM_INIT_AUTOMAKE([subdir-objects])
88
AC_LANG([C++])

man/vsearch.1

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.\" import www macros (URL, TAG, MTO)
22
.mso www.tmac
33
.\" ============================================================================
4-
.TH vsearch 1 "December 12, 2025" "version 2.30.2" "USER COMMANDS"
4+
.TH vsearch 1 "January 12, 2026" "version 2.30.3" "USER COMMANDS"
55
.\" ============================================================================
66
.SH NAME
77
vsearch \(em a versatile open-source tool for microbiome analysis,
@@ -5158,6 +5158,10 @@ improve: code coverage of our test-suite
51585158
This release fixes two minor issues. Allow a UDB file to be written to
51595159
a pipe or stdout (issue #599). Correct computation of median cluster
51605160
size after dereplication (issue #611).
5161+
.TP
5162+
.BR v2.30.3\~ "released January 12th, 2026"
5163+
This release fixes memory allocation bugs in the chimera detection
5164+
code that caused a segmentation fault in rare cases (issue #615).
51615165
.\" ============================================================================
51625166
.\" TODO:
51635167
.\"

0 commit comments

Comments
 (0)