Skip to content

Commit

Permalink
Updated ectyper --help message info with correct default values
Browse files Browse the repository at this point in the history
  • Loading branch information
kbessonov1984 committed Mar 1, 2024
1 parent 0545926 commit 7faddfb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ectyper/commandLineOptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,31 +72,31 @@ def checkdbversion():
"-opid",
"--percentIdentityOtype",
type=check_percentage,
help="Percent identity required for an O antigen allele match [default 90]",
help="Percent identity required for an O antigen allele match [default %(default)s]",
default=90
)

parser.add_argument(
"-hpid",
"--percentIdentityHtype",
type=check_percentage,
help="Percent identity required for an H antigen allele match [default 95]",
help="Percent identity required for an H antigen allele match [default %(default)s]",
default=95
)

parser.add_argument(
"-opcov",
"--percentCoverageOtype",
type=check_percentage,
help="Minumum percent coverage required for an O antigen allele match [default 95]",
help="Minumum percent coverage required for an O antigen allele match [default %(default)s]",
default=90
)

parser.add_argument(
"-hpcov",
"--percentCoverageHtype",
type=check_percentage,
help="Minumum percent coverage required for an H antigen allele match [default 50]",
help="Minumum percent coverage required for an H antigen allele match [default %(default)s]",
default=50
)

Expand Down

0 comments on commit 7faddfb

Please sign in to comment.