Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
xin-huang committed Dec 29, 2024
1 parent 4436f55 commit c059806
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sai/parsers/score_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,13 +189,13 @@ def add_score_parser(subparsers: argparse.ArgumentParser) -> None:
)
parser.add_argument(
"--w",
type=positive_number,
type=between_zero_and_one,
required=True,
help="frequency threshold for variants in the reference population; only variants with frequencies below this threshold are included in the analysis.",
)
parser.add_argument(
"--x",
type=positive_number,
type=between_zero_and_one,
required=True,
help="frequency threshold for variants in the target population; only variants with frequencies exceeding this threshold are included in the analysis.",
)
Expand Down

0 comments on commit c059806

Please sign in to comment.