cryoCARE_T2T icon indicating copy to clipboard operation
cryoCARE_T2T copied to clipboard

IndexError in 02_Tomogram_reconstruction.ipynb

Open aseedb opened this issue 5 years ago • 2 comments

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

aseedb avatar Dec 17 '20 20:12 aseedb

looks identical to https://github.com/juglab/cryoCARE_T2T/pull/6

truatpasteurdotfr avatar Apr 13 '21 14:04 truatpasteurdotfr

For me the following worked properly: pixel_spacing = float(p.split()[0])*0.1

steffen-klein avatar Oct 01 '21 15:10 steffen-klein