Skip to content
Snippets Groups Projects
Verified Commit 73c22320 authored by Xavier Robin's avatar Xavier Robin
Browse files

doc: SCHWED-5481 fix possible arguments

parent 4428dc43
No related branches found
No related tags found
No related merge requests found
...@@ -118,7 +118,7 @@ def _ParseArgs(): ...@@ -118,7 +118,7 @@ def _ParseArgs():
"--model-format", "--model-format",
dest="model_format", dest="model_format",
default="auto", default="auto",
choices=["pdb", "mmcif"], choices=["pdb", "mmcif", "cif"],
help=("Format of model file. Inferred from path if not given.")) help=("Format of model file. Inferred from path if not given."))
parser.add_argument( parser.add_argument(
...@@ -127,7 +127,7 @@ def _ParseArgs(): ...@@ -127,7 +127,7 @@ def _ParseArgs():
"--ref-format", "--ref-format",
dest="reference_format", dest="reference_format",
default="auto", default="auto",
choices=["cif", "mmcif"], choices=["pdb", "mmcif", "cif"],
help=("Format of reference file. Inferred from path if not given.")) help=("Format of reference file. Inferred from path if not given."))
parser.add_argument( parser.add_argument(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment