From e8c2d8d6a7c52df7ad28e1edb16825edccab3513 Mon Sep 17 00:00:00 2001 From: Garrett Wright Date: Thu, 27 Jun 2024 08:39:25 -0400 Subject: [PATCH] missing src assignments in 10081 gallery experiment --- gallery/experiments/experimental_abinitio_pipeline_10081.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gallery/experiments/experimental_abinitio_pipeline_10081.py b/gallery/experiments/experimental_abinitio_pipeline_10081.py index b142586b10..be27bc6e43 100644 --- a/gallery/experiments/experimental_abinitio_pipeline_10081.py +++ b/gallery/experiments/experimental_abinitio_pipeline_10081.py @@ -64,15 +64,15 @@ # Downsample the images logger.info(f"Set the resolution to {img_size} X {img_size}") -src.downsample(img_size) +src = src.downsample(img_size) # Use phase_flip to attempt correcting for CTF. logger.info("Perform phase flip to input images.") -src.phase_flip() +src = src.phase_flip() # Estimate the noise and `Whiten` based on the estimated noise aiso_noise_estimator = AnisotropicNoiseEstimator(src) -src.whiten(aiso_noise_estimator.filter) +src = src.whiten(aiso_noise_estimator.filter) # Caching is used for speeding up large datasets on high memory machines. src = src.cache()