You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During operations reprocessing, a new error was found during detector1 processing of a MIRI TSO dataset, err log attached. It appears that stcal/jump/jump.py checks if nints > minimum_sigclip_groups on L975, then checks if nints >= minimum_sigclip_groups: on L1003.
I don't know the details of how the segment is chunked for multiprocessing, but it appears as though the number of integrations being processed at this point is equal to the cutoff value, leading to an expected parameter instead being undefined. Suggest fixing L975 to >=.
The text was updated successfully, but these errors were encountered:
Confirmed that the now-merged stcal avoids the crash in the file jw03730008001_03101_00001-seg004_mirimage_uncal.fits that originally triggered this ticket.
Issue JP-3689 was created on JIRA by Tyler Pauly:
During operations reprocessing, a new error was found during detector1 processing of a MIRI TSO dataset, err log attached. It appears that stcal/jump/jump.py checks
if nints > minimum_sigclip_groups
on L975, then checksif nints >= minimum_sigclip_groups:
on L1003.I don't know the details of how the segment is chunked for multiprocessing, but it appears as though the number of integrations being processed at this point is equal to the cutoff value, leading to an expected parameter instead being undefined. Suggest fixing L975 to >=.
The text was updated successfully, but these errors were encountered: