Skip to content

Commit

Permalink
Merge pull request #18 from rouskinlab/0.21.1
Browse files Browse the repository at this point in the history
0.21.1
  • Loading branch information
matthewfallan authored Oct 18, 2024
2 parents 6623650 + 55bb78f commit fb45ab2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/seismicrna/core/arg/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -1338,13 +1338,13 @@
opt_verbose = Option(
("--verbose", "-v"),
count=True,
help="Log info (-v) or info and debug (-vv) messages on stdout"
help="Log more messages (-v, -vv, or -vvv) on stderr"
)

opt_quiet = Option(
("--quiet", "-q"),
count=True,
help="Suppress warnings (-q) or warnings and errors (-qq) on stdout"
help="Log fewer messages (-q, -qq, or -qqq) on stderr"
)

opt_log = Option(
Expand Down
2 changes: 1 addition & 1 deletion src/seismicrna/core/version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import re


__version__ = "0.21.0"
__version__ = "0.21.1"


def parse_version(version: str = __version__):
Expand Down
4 changes: 2 additions & 2 deletions src/seismicrna/mask/write.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,8 @@ def _filter_discontig(self, batch: SectionMutsBatch):
""" Filter out reads with discontiguous mates. """
if not self.mask_discontig:
# Keep discontiguous reads.
logger.debug(f"{self} skipped filtering reads with "
f"discontiguous mates in {batch}")
logger.detail(f"{self} skipped filtering reads with "
f"discontiguous mates in {batch}")
return batch
# Find the reads with contiguous mates.
reads = batch.read_nums[batch.contiguous]
Expand Down

0 comments on commit fb45ab2

Please sign in to comment.