Skip to content

Commit

Permalink
Updated to v0.9.29.
Browse files Browse the repository at this point in the history
  • Loading branch information
bbuchfink committed Nov 19, 2019
1 parent df33016 commit 9186fb3
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,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.28/diamond-linux64.tar.gz
wget http://github.com/bbuchfink/diamond/releases/download/v0.9.29/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.
2 changes: 1 addition & 1 deletion src/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[0.9.29]
- Fixed a bug that could cause taxonomy features to function incorrectly, affecting versions 0.9.27 and 0.9.28.
- Fixed a bug that could cause taxonomy features to function incorrectly for databases created by versions 0.9.27 and 0.9.28.

[0.9.28]
- Fixed a bug that could cause alignment score overflows for scores > 65535 in frameshift alignment mode.
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.28";
const char* Const::version_string = "0.9.29";
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 = 129,
build_version = 130,
seedp_bits = 10,
seedp = 1<<seedp_bits,
max_seed_weight = 32,
Expand Down

0 comments on commit 9186fb3

Please sign in to comment.