Skip to content

Commit

Permalink
Merge pull request hillerlab#40 from ning-y/fix-chain-linear-gap-choi…
Browse files Browse the repository at this point in the history
…ces-syntax

Fix missing double-quotes giving argparse error
  • Loading branch information
kirilenkobm authored Nov 6, 2023
2 parents e0ceec7 + 3127495 commit 187e313
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion make_chains.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def parse_args():
type=int)
pipeline_params.add_argument("--chain_linear_gap",
default=Constants.DEFAULT_CHAIN_LINEAR_GAP,
choices=["loose, medium"],
choices=["loose", "medium"],
type=str)
pipeline_params.add_argument("--num_fill_jobs", default=Constants.DEFAULT_NUM_FILL_JOBS, type=int)
pipeline_params.add_argument("--fill_chain_min_score",
Expand Down

0 comments on commit 187e313

Please sign in to comment.