Skip to content

Commit

Permalink
Update to v0.9.25.
Browse files Browse the repository at this point in the history
  • Loading branch information
bbuchfink committed Jul 23, 2019
1 parent ac3051f commit 69d3b43
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,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.24/diamond-linux64.tar.gz
wget http://github.com/bbuchfink/diamond/releases/download/v0.9.25/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.
12 changes: 7 additions & 5 deletions src/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
[0.9.25]
- Added support for the sscinames output field to print subject scientific names to the tabular output format.
- Added support for the `sscinames` output field to print subject scientific names to the tabular output format.
- Fixed a compiler error for GCC 8.2.
- Added option --stop-match-score to set the match score of stop codons.
- Fixed a bug that caused the qqual output field to not be correctly clipped to the aligned part of the query.
- Added output fields qseq_gapped and sseq_gapped to the tabular format.
- Added option `--stop-match-score` to set the match score of stop codons.
- Fixed a bug that caused the `qqual` output field to not be correctly clipped to the aligned part of the query.
- Added output fields `qseq_gapped` and `sseq_gapped` to the tabular format.
- Raised compiler requirement to GCC 4.8.
- Fixed a bug that caused the final sequence positions to not be printed in the pairwise format.
- Allow using --min-score instead of --top for the LCA computation of the taxonomy output format.
- Allow using `--min-score` instead of `--top` for the LCA computation of the taxonomy output format.
- Reduced the number of temporary files.
- Added output field `qstrand` to the tabular format.
- Database format version changed to 3.
- Fixed a bug in the `--range-culling` mode that could cause undefined behaviour.

[0.9.24]
- Fixed a compiler error on macOS.
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.24";
const char* Const::version_string = "0.9.25";
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 = 125,
build_version = 126,
seedp_bits = 10,
seedp = 1<<seedp_bits,
max_seed_weight = 32,
Expand Down

0 comments on commit 69d3b43

Please sign in to comment.