From d7b97a4085bb04e2142c692c335d43046d006697 Mon Sep 17 00:00:00 2001 From: alncat Date: Mon, 26 May 2025 14:26:04 +0800 Subject: [PATCH] fixed compatability with CTF volume reconstructed by WARP --- pytom/agnostic/structures.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytom/agnostic/structures.py b/pytom/agnostic/structures.py index 96f8d7db..483460a3 100644 --- a/pytom/agnostic/structures.py +++ b/pytom/agnostic/structures.py @@ -1588,7 +1588,7 @@ def returnWedgeVolume(self, wedgeSizeX=None, wedgeSizeY=None, wedgeSizeZ=None, h if not humanUnderstandable: return wedge else: - return fftshift(fourier_reduced2full(wedge)) + return fftshift(fourier_reduced2full(wedge, reduced_axis=0)) def apply(self, volume, rotation=None):