Skip to content

Commit d2e1885

Browse files
committed
VSEARCH 2.29.2
1 parent 49d7ff2 commit d2e1885

File tree

3 files changed

+13
-9
lines changed

3 files changed

+13
-9
lines changed

README.md

+7-7
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 the [VSEARCH documentation](https://github.com/torognes/vsearch/releases/download/v2.29.1/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 the [VSEARCH documentation](https://github.com/torognes/vsearch/releases/download/v2.29.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.
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.29.1.tar.gz
56-
tar xzf v2.29.1.tar.gz
57-
cd vsearch-2.29.1
55+
wget https://github.com/torognes/vsearch/archive/v2.29.2.tar.gz
56+
tar xzf v2.29.2.tar.gz
57+
cd vsearch-2.29.2
5858
./autogen.sh
5959
./configure CFLAGS="-O3" CXXFLAGS="-O3"
6060
make ARFLAGS="cr"
@@ -89,7 +89,7 @@ wget https://github.com/torognes/vsearch/releases/download/v{VERSION}/vsearch-{V
8989
tar xzf vsearch-{VERSION}-{OS}-{ARCH}.tar.gz
9090
```
9191

92-
Replace `{VERSION}` with the VSEARCH version number (e.g. `2.29.1`), `{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`.
92+
Replace `{VERSION}` with the VSEARCH version number (e.g. `2.29.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`.
9393

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

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

116-
**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.29.1/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.29.1/vsearch_manual.pdf)) is also attached to the latest [release](https://github.com/torognes/vsearch/releases).
116+
**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.29.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.29.2/vsearch_manual.pdf)) is also attached to the latest [release](https://github.com/torognes/vsearch/releases).
117117

118118

119119
## Packages, plugins, and wrappers
@@ -157,7 +157,7 @@ Compiling VSEARCH requires either GCC (`g++`) or `clang`, `make` and the autotoo
157157

158158
VSEARCH will automatically check whether these libraries are available and load them dynamically.
159159

160-
On Windows these libraries are called `zlib1.dll` and `libbz2.dll`. These DLL's are included with the released distribution of vsearch 2.29.1 and later.
160+
On Windows these libraries are called `zlib1.dll` and `libbz2.dll`. These DLL's are included with the released distribution of vsearch 2.29.2 and later.
161161

162162
To create the PDF file with the manual the ps2pdf tool is required. It is part of the `ghostscript` package.
163163

configure.ac

+1-1
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.29.1], [torognes@ifi.uio.no], [vsearch], [https://github.com/torognes/vsearch])
5+
AC_INIT([vsearch], [2.29.2], [torognes@ifi.uio.no], [vsearch], [https://github.com/torognes/vsearch])
66
AC_CANONICAL_TARGET
77
AM_INIT_AUTOMAKE([subdir-objects])
88
AC_LANG([C++])

man/vsearch.1

+5-1
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 "October 24, 2024" "version 2.29.1" "USER COMMANDS"
4+
.TH vsearch 1 "December 20, 2024" "version 2.29.2" "USER COMMANDS"
55
.\" ============================================================================
66
.SH NAME
77
vsearch \(em a versatile open-source tool for microbiome analysis,
@@ -4994,6 +4994,10 @@ improve: code-coverage of our test-suite for the above-mentioned commands (1,210
49944994
Fix a segmentation fault that could occur during alignment in version
49954995
2.29.0, for example with \-\-uchime_ref. Some improvements to code and
49964996
documentation.
4997+
.TP
4998+
.BR v2.29.2\~ "released December 20th, 2024"
4999+
Fix a segmentation fault during clustering when the set of clusters is empty.
5000+
Initial documentation in markdown format available on GitHub Pages.
49975001
.\" ============================================================================
49985002
.\" TODO:
49995003
.\"

0 commit comments

Comments
 (0)