Skip to content

Commit

Permalink
Changed default MR mode to 6
Browse files Browse the repository at this point in the history
  • Loading branch information
paulsbond committed Feb 27, 2020
1 parent cfe62ef commit e4b9190
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/index.html
Expand Up @@ -104,7 +104,7 @@ <h2 class="heading">Optional Arguments</h2>
</p>

<p>
<code>--mr-mode CHOICE</code> default: <code>2</code><br>
<code>--mr-mode CHOICE</code> default: <code>6</code><br>
Determine how the molecular replacement model is used:<br>
1 - Phasing<br>
2 - Phasing, placing/naming chains<br>
Expand Down
2 changes: 1 addition & 1 deletion modelcraft/arguments.py
Expand Up @@ -29,7 +29,7 @@ def _argument_parser():
optional.add_argument("--help", action="help")
optional.add_argument("--keep-intermediate-files", action="store_true")
optional.add_argument("--known-structure", nargs="+", metavar="SELECTION", default=[])
optional.add_argument("--mr-mode", metavar="CHOICE", type=int, choices=range(1, 7), default=2)
optional.add_argument("--mr-mode", metavar="CHOICE", type=int, choices=range(1, 7), default=6)
optional.add_argument("--mr-model", metavar="FILE")
optional.add_argument("--no-auto-stop", dest="auto_stop", action="store_false")
optional.add_argument("--semet", action="store_true")
Expand Down

0 comments on commit e4b9190

Please sign in to comment.