Skip to content

Commit

Permalink
fixed parser check for specified substitution matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
JLSteenwyk committed Aug 23, 2024
1 parent 538cbfd commit ff65c7c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion orthohmm/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
from .helpers import (
StartStep,
StopStep,
SubstitutionMatrix,
)
from .version import __version__

Expand Down Expand Up @@ -195,7 +196,7 @@ def create_parser() -> ArgumentParser:
metavar="output_directory"
)

substitution_matrix_choices = [step.value for step in StartStep]
substitution_matrix_choices = [step.value for step in SubstitutionMatrix]
optional.add_argument(
"-x",
"--substitution_matrix",
Expand Down

0 comments on commit ff65c7c

Please sign in to comment.