Skip to content

Commit 6dc5717

Browse files
committed
v2.2.5
1 parent 56b8e33 commit 6dc5717

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/ChangeLog

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
- Linear-time stages of the clustering workflows now by default use banded instead of full-matrix
44
extension (set `--ext full` to use full-matrix extension instead).
55
- Added the option `--reseek-diags` to recompute diagonals prior to chaining.
6-
- Added the option `--reseek-xdrop` to set ungapped x-drop, `--word-threshold` to set the
7-
word threshold in bits for k-mer neighbors for the Aho�Corasick automaton, `--double-hit-window`
8-
to set the window for double hits when using `--reseek-diags`.
6+
- Added the options `--reseek-xdrop` to set ungapped x-drop, `--word-threshold` to set the
7+
word threshold in bits for k-mer neighbors and `--double-hit-window` to set the window for double hits
8+
when using `--reseek-diags`.
99
- Removed the `--linclust-banded-ext` and `--lin-combo` options.
1010
- Fixed a potential issue of increased memory use in the clustering workflows.
11-
- Improved the performance of reading FASTA files.
11+
- Improved the performance of reading sequence files.
1212
- Fixed a potential inter-toolchain inconsistency in search workflows using sketching.
1313
- Fixed a potential non-determinism in the clustering workflows.
1414
- Fixed a bug causing invalid line breaks in the output file when using the `qtitle` output field

src/basic/config.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,6 @@ Config::Config(int argc, const char **argv, bool check_io, CommandLineParser& pa
360360
("round-approx-id", 0, "Per-round approx-id cutoffs for cascaded clustering", round_approx_id)
361361
("aln-out", 0, "Output file for clustering alignments", aln_out)
362362
("reps", 0, "Output file for representative sequences in FASTA format. Only includes id and sequence (no additional header data).", reps_out)
363-
("seed-index", 0, "Use precomputed block seed indexes in linear clustering rounds", seed_index)
364363
("single-step", 0, "Perform one computational step of clustering then exit", single_step);
365364

366365
auto& memory_opt = parser.add_group("Memory options", { cluster, RECLUSTER, CLUSTER_REASSIGN, GREEDY_VERTEX_COVER, DEEPCLUST, LINCLUST, CLUSTER_REALIGN });
@@ -633,6 +632,7 @@ Config::Config(int argc, const char **argv, bool check_io, CommandLineParser& pa
633632
("hamming-ext", 0, "", hamming_ext)
634633
("diag-filter-id", 0, "", diag_filter_id)
635634
("diag-filter-cov", 0, "", diag_filter_cov)
635+
("seed-index", 0, "", seed_index)
636636
("dbtype", 0, "type of sequences in database file (nucl/prot)", dbstring, string("prot"))
637637
("cluster-similarity", 0, "Clustering similarity measure (default=\"normalized_bitscore_global\")", cluster_similarity)
638638
("cluster-threshold", 0, "Threshold for the similarity measure (default=50%)", cluster_threshold)

0 commit comments

Comments
 (0)