Skip to content

Commit 85ed1d7

Browse files
committed
Use unlimited rather than big number
1 parent eb68ca5 commit 85ed1d7

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Usage
7777
The threshold above which a sequence is considered
7878
overrepresented even if the threshold fraction is not
7979
surpassed. Useful for very large files. Default:
80-
9,223,372,036,854,775,807
80+
unlimited.
8181
--max-unique-sequences MAX_UNIQUE_SEQUENCES
8282
The maximum amount of unique fragments to gather.
8383
Larger amounts increase the sensitivity of finding

src/sequali/__main__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,10 @@ def argument_parser() -> argparse.ArgumentParser:
5656
f"smaller files. Default: {100}")
5757
parser.add_argument("--overrepresentation-max-threshold", type=int,
5858
default=sys.maxsize,
59-
help=f"The threshold above which a sequence is "
60-
f"considered overrepresented even if the "
61-
f"threshold fraction is not surpassed. Useful for "
62-
f"very large files. Default: {sys.maxsize:,}")
59+
help="The threshold above which a sequence is "
60+
"considered overrepresented even if the "
61+
"threshold fraction is not surpassed. Useful for "
62+
"very large files. Default: unlimited.")
6363
parser.add_argument("--max-unique-sequences", type=int,
6464
default=DEFAULT_MAX_UNIQUE_SEQUENCES,
6565
help=f"The maximum amount of unique fragments to "

0 commit comments

Comments
 (0)