Skip to content

Commit 0ac0ac3

Browse files
update installation instructions
1 parent 74289d0 commit 0ac0ac3

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

docs/changes.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
Changes
22
=======
33

4-
Version 0.2.2 (upcoming)
4+
Version 0.3.0 (upcoming)
55
*************
66

77
* Scale heatmaps to the same size as the tomogram, to make them overlay easily. Additionally, make them optional (--write_heatmaps) as they require some space
88
* Write Relion 3 STAR files as they are required for WARP (Thanks Tom Dendooven)
9+
* Reference refinement deactivated by default.
910

1011
Version 0.2.1
1112
*************

tomotwin/modules/inference/argparse_map_ui.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ def run(self, args=None) -> None:
403403
self.output_pth = args.output
404404
if "distance" in sys.argv[1]:
405405
self.mode = MapMode.DISTANCE
406-
self.skip_refinement = args.skip_refinement
406+
self.skip_refinement = not args.refine
407407

408408
def get_map_configuration(self) -> MapConfiguration:
409409
conf = MapConfiguration(
@@ -437,10 +437,10 @@ def create_distance_parser(parser):
437437
)
438438

439439
parser.add_argument(
440-
"--skip_refinement",
440+
"--refine",
441441
action='store_true',
442442
default=False,
443-
help="Skip the reference refinement",
443+
help="Do reference refinement",
444444
)
445445

446446
parser.add_argument(

0 commit comments

Comments
 (0)