From 938201b2c759a174165873aebca85b274613be7d Mon Sep 17 00:00:00 2001 From: Adam English Date: Fri, 26 Jan 2024 23:20:25 -0500 Subject: [PATCH] bench help fix missing a default --- truvari/bench.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/truvari/bench.py b/truvari/bench.py index 9f829d37..a9afa455 100644 --- a/truvari/bench.py +++ b/truvari/bench.py @@ -52,7 +52,7 @@ def parse_args(args): thresg.add_argument("-t", "--typeignore", action="store_true", default=defaults.typeignore, help="Don't compare variant types (%(default)s)") thresg.add_argument("--pick", type=str, default=defaults.pick, choices=PICKERS.keys(), - help="Number of matches reported per-call") + help="Number of matches reported per-call (%(default)s)") thresg.add_argument("--dup-to-ins", action="store_true", help="Assume DUP svtypes are INS (%(default)s)") thresg.add_argument("-C", "--chunksize", type=truvari.restricted_int, default=defaults.chunksize,