Skip to content

Commit ed8d3ca

Browse files
committed
bump version number to 1.7.0
fix #93 fix #94
1 parent bd89aca commit ed8d3ca

File tree

5 files changed

+15
-11
lines changed

5 files changed

+15
-11
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -323,9 +323,9 @@ kaiju-mkfmi proteins
323323
This will create two intermediate files `proteins.bwt` and `proteins.sa`, and finally
324324
the file `proteins.fmi`, which is used by Kaiju.
325325

326-
The option `-n` for `mkbwt` specifies the number of parallel threads. The more
326+
The option `-n` for `kaiju-mkbwt` specifies the number of parallel threads. The more
327327
threads are used, the higher the memory consumption becomes. The option `-e`
328-
for `mkbwt` specifies the exponent of the suffix array checkpoint distances and
328+
for `kaiju-mkbwt` specifies the exponent of the suffix array checkpoint distances and
329329
therefore determines the trade-off between the size of the suffix array and the
330330
speed of the search. The default value is 5.
331331

src/Config.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* This file is part of Kaiju, Copyright 2015-2018 Peter Menzel and Anders Krogh,
1+
/* This file is part of Kaiju, Copyright 2015-2019 Peter Menzel and Anders Krogh,
22
* Kaiju is licensed under the GPLv3, see the file LICENSE. */
33

44
#ifndef CONFIG_H

src/ConsumerThread.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* This file is part of Kaiju, Copyright 2015-2017 Peter Menzel and Anders Krogh,
1+
/* This file is part of Kaiju, Copyright 2015-2019 Peter Menzel and Anders Krogh,
22
* Kaiju is licensed under the GPLv3, see the file LICENSE. */
33

44
#ifndef CONSUMERTHREAD_H

src/version.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
#ifndef KAIJU_VERSION_H
55
#define KAIJU_VERSION_H
66

7-
#define KAIJUVERSION "1.6.3"
7+
#define KAIJUVERSION "1.7.0"
88

99
#endif

util/kaiju-makedb

+10-6
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ index_only=0
1818

1919

2020
usage() {
21+
echo
22+
echo kaiju-makedb
23+
echo Copyright 2015-2019 Peter Menzel, Anders Krogh
24+
echo License GPLv3+: GNU GPL version 3 or later, http://gnu.org/licenses/gpl.html
2125
echo
2226
echo This program creates a protein reference database and index for Kaiju.
2327
echo
@@ -40,16 +44,16 @@ usage() {
4044
echo
4145
echo " rvdb: Viral proteins from RVDB-prot"
4246
echo
43-
echo "For example: $0 -s nr will create the database file kaijud_db_nr.fmi"
47+
echo "For example: $0 -s nr will create the database file kaiju_db_nr.fmi"
4448
echo
4549
echo Additional options:
4650
echo
47-
echo "$s" -t X Set number of parallel threads for index construction to X \(default:5\)
48-
echo " The more threads are used, the higher the memory requirement becomes."
51+
echo " -t X Set number of parallel threads for index construction to X \(default:5\)"
52+
echo " The more threads are used, the higher the memory requirement becomes."
4953
echo
50-
echo "$s" --no-download Do not download files, but use the existing files in the folder.
54+
echo " --no-download Do not download files, but use the existing files in the folder."
5155
echo
52-
echo "$s" --index-only Only create BWT and FMI from kaiju_db_*.faa files, implies --no-download.
56+
echo " --index-only Only create BWT and FMI from kaiju_db_*.faa files, implies --no-download."
5357
echo
5458
}
5559

@@ -118,7 +122,7 @@ command -v kaiju-mkfmi >/dev/null 2>/dev/null || { echo Error: kaiju-mkfmi not f
118122
command -v kaiju-mkbwt >/dev/null 2>/dev/null || { echo Error: kaiju-mkbwt not found in $PATH; exit 1; }
119123
command -v kaiju-convertNR >/dev/null 2>/dev/null || { echo Error: kaiju-convertNR not found in $PATH; exit 1; }
120124

121-
[ -z "$DB" ] && { echo Error: Use option -s to select a source database; exit 1; }
125+
[ -z "$DB" ] && { echo Error: Use option -s to select a source database; usage; exit 1; }
122126
[ "$DB" = "mar" -o "$DB" = "mar_ref" -o "$DB" = "mar_db" -o "$DB" = "mar_mag" -o "$DB" = "nr" -o "$DB" = "nr_euk" -o "$DB" = "refseq" -o "$DB" = "progenomes" -o "$DB" = "viruses" -o "$DB" = "plasmids" -o "$DB" = "rvdb" ] || { echo Error: $DB is not a valid source database; usage; exit 1; }
123127

124128
if [ "$DB" = "mar" -o "$DB" = "mar_ref" -o "$DB" = "mar_db" -o "$DB" = "mar_mag" ]

0 commit comments

Comments
 (0)