Skip to content

Commit

Permalink
Updated to v0.9.28.
Browse files Browse the repository at this point in the history
  • Loading branch information
bbuchfink committed Nov 6, 2019
1 parent ebe08d1 commit 0639f88
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ Keep posted about new developments by following me on

[![Build Status](https://travis-ci.org/bbuchfink/diamond.svg?branch=master)](https://travis-ci.org/bbuchfink/diamond)
[![image](https://anaconda.org/bioconda/diamond/badges/version.svg)](https://anaconda.org/bioconda/diamond)
![image](https://anaconda.org/bioconda/diamond/badges/platforms.svg)
[![image](https://anaconda.org/bioconda/diamond/badges/downloads.svg)](https://anaconda.org/bioconda/diamond)

Quick start guide
Expand All @@ -32,7 +31,7 @@ quick example for setting up and using the program on Linux.
Installing the software on your system may be done by downloading it in
binary format for immediate use:

wget http://github.com/bbuchfink/diamond/releases/download/v0.9.27/diamond-linux64.tar.gz
wget http://github.com/bbuchfink/diamond/releases/download/v0.9.28/diamond-linux64.tar.gz
tar xzf diamond-linux64.tar.gz

The extracted `diamond` binary file should be moved to a directory
Expand Down
Binary file modified diamond_manual.pdf
Binary file not shown.
3 changes: 2 additions & 1 deletion src/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[0.9.28]
- Fixed a bug that could cause alignment score overflows for scores > 65536 in frameshift alignment mode.
- Fixed a bug that could cause alignment score overflows for scores > 65535 in frameshift alignment mode.
- Fixed a clang compiler error.

[0.9.27]
- Improved performance of the seed matching stage.
Expand Down
2 changes: 1 addition & 1 deletion src/basic/basic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "sequence.h"
#include "masking.h"

const char* Const::version_string = "0.9.27";
const char* Const::version_string = "0.9.28";
const char* Const::program_name = "diamond";
const char* Const::id_delimiters = " \a\b\f\n\r\t\v\1";

Expand Down
2 changes: 1 addition & 1 deletion src/basic/const.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ struct Const
{

enum {
build_version = 128,
build_version = 129,
seedp_bits = 10,
seedp = 1<<seedp_bits,
max_seed_weight = 32,
Expand Down

0 comments on commit 0639f88

Please sign in to comment.