Skip to content

Commit

Permalink
Allow extract_downscale to not be present in ispyb_parameters (#201)
Browse files Browse the repository at this point in the history
  • Loading branch information
d-j-hatton authored Feb 14, 2024
1 parent a818dba commit 365a43f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/relion/zocalo/wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def run(self):
pass

# Could be given either a requirement to downscale, or a downscaled box size
if self.params["ispyb_parameters"]["extract_downscale"]:
if self.params["ispyb_parameters"].get("extract_downscale"):
self.params["ispyb_parameters"][
"extract_small_boxsize"
] = cryolo_relion_it.calculate_downscaled_box_size(
Expand Down

0 comments on commit 365a43f

Please sign in to comment.