Hi Steve,
Thank you for the quick reply! Added 'print(rid)' at line 4053. Output below with e2version.py preceding.
(eman2) [ianmccue]$ e2version.py
EMAN 2.99.70 ( GITHUB: 2025-11-13 21:27 - commit: 771080bda )
Your EMAN2 is running on: Linux-5.14.0-570.52.1.el9_6.x86_64-x86_64-with-glibc2.34 5.14.0-570.52.1.el9_6.x86_64
Your Python version is: 3.12.12
(eman2) [ianmccue]$ e2display.py
[(19, 0), (15, 1), (6, 2), (5, 3)]
Traceback (most recent call last):
File "/app/user_dirs/ianmccue/miniforge3/envs/eman2/lib/python3.12/site-packages/eman2_gui/embrowser.py", line 4054, in updateDetailsDisplay
rmin=rdr[min(rid)[1]]; rmax=rdr[max(rid)[1]]
~~~~~~~~^^^
IndexError: invalid index to scalar variable.
Aborted (core dumped)
Checking on some of the other variables it seems the issue is that min(rid) isn't recognized as a list of tuples? output below:
rid: [(19, 0), (15, 1), (6, 2), (5, 3)]
min(rid): 0
rid contents: [(19, 0), (15, 1), (6, 2), (5, 3)]
min(rid): 0 type: <class 'numpy.int64'>
Is the min function from numpy what should be called here?
-Ian M.