Skip to content

Commit e299993

Browse files
committed
Adjusted box size calculation for initial model
1 parent c0b7b6f commit e299993

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/murfey/server/feedback.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1115,12 +1115,12 @@ def _find_initial_model(visit: str, machine_config: MachineConfig) -> Path | Non
11151115

11161116

11171117
def _downscaled_box_size(
1118-
particle_diameter: int, pixel_size: float
1118+
particle_diameter_ang: float, pixel_size: float
11191119
) -> Tuple[int, float]:
1120+
particle_diameter = particle_diameter_ang / pixel_size
11201121
box_size = int(math.ceil(1.2 * particle_diameter))
11211122
box_size = box_size + box_size % 2
11221123
for small_box_pix in (
1123-
48,
11241124
64,
11251125
96,
11261126
128,
@@ -1145,9 +1145,9 @@ def _downscaled_box_size(
11451145
# Don't go larger than the original box
11461146
if small_box_pix > box_size:
11471147
return box_size, pixel_size
1148-
# If Nyquist freq. is better than 8.5 A, use this downscaled box, else step size
1148+
# If Nyquist freq. is better than 7.5 A, use this downscaled box, else step size
11491149
small_box_angpix = pixel_size * box_size / small_box_pix
1150-
if small_box_angpix < 4.25:
1150+
if small_box_angpix < 3.75:
11511151
return small_box_pix, small_box_angpix
11521152
raise ValueError(f"Box size is too large: {box_size}")
11531153

@@ -1198,6 +1198,8 @@ def _resize_intial_model(
11981198
str(downscaled_box_size),
11991199
"--rescale_angpix",
12001200
str(downscaled_pixel_size),
1201+
"--force_header_angpix",
1202+
str(downscaled_pixel_size),
12011203
"--o",
12021204
str(output_path),
12031205
],

0 commit comments

Comments
 (0)