cryoCARE_T2T
cryoCARE_T2T copied to clipboard
IndexError in 02_Tomogram_reconstruction.ipynb
Hi,
The 7th code cell in 02_Tomogram_reconstruction.ipynb is triggering an IndexError.
It can be fixed by replacing
pixel_spacing = float(p[1].split()[0])*0.1
with
pixel_spacing = float(p[0].split()[0])*0.1
looks identical to https://github.com/juglab/cryoCARE_T2T/pull/6
For me the following worked properly:
pixel_spacing = float(p.split()[0])*0.1