Skip to content

Commit

Permalink
Remove unnecessary tuple
Browse files Browse the repository at this point in the history
  • Loading branch information
lrvdijk committed Jun 3, 2022
1 parent 17cea59 commit 613d165
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/strainge/cli/kmersets.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def __call__(self, k, sequences, output, limit=None, prune=None,
thresholds = kmerset.spectrum_filter()
if thresholds:
logger.info("Filtered kmerset. Only k-mers within frequency "
"range [%d, %d] are kept (mode %d).", *(thresholds[0], thresholds[2], thresholds[1]))
"range [%d, %d] are kept (mode %d).", thresholds[0], thresholds[2], thresholds[1])
else:
logger.warning("Unable to compute filter thresholds! Continuing without filtering...")

Expand Down

0 comments on commit 613d165

Please sign in to comment.