Skip to content

Commit

Permalink
small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
clami66 committed Mar 25, 2024
1 parent e3c0bc6 commit b930d66
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/DockQ/DockQ.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ def parse_args():
description="DockQ - Quality measure for \
protein-protein docking models"
)
parser.add_argument("model", metavar="<model>", type=str, help="path to model file")
parser.add_argument("model", metavar="<model>", type=str, help="Path to model file")
parser.add_argument(
"native", metavar="<native>", type=str, help="path to native file"
"native", metavar="<native>", type=str, help="Path to native file"
)
parser.add_argument(
"--capri_peptide",
Expand All @@ -49,10 +49,10 @@ def parse_args():
(DockQ cannot not be trusted for this setting)",
)
parser.add_argument(
"--short", default=False, action="store_true", help="short output"
"--short", default=False, action="store_true", help="Short output"
)
parser.add_argument(
"--verbose", "-v", default=False, action="store_true", help="talk a lot!"
"--verbose", "-v", default=False, action="store_true", help="Verbose output"
)
parser.add_argument(
"--no_align",
Expand All @@ -71,13 +71,13 @@ def parse_args():
"--optDockQF1",
default=False,
action="store_true",
help="optimize on DockQ_F1 instead of DockQ",
help="Optimize on DockQ_F1 instead of DockQ",
)
parser.add_argument(
"--allowed_mismatches",
default=0,
type=int,
help="number of allowed mismatches when mapping model sequence to native sequence.",
help="Number of allowed mismatches when mapping model sequence to native sequence.",
)
parser.add_argument(
"--mapping",
Expand Down

0 comments on commit b930d66

Please sign in to comment.