Closed hstewart93 closed 2 months ago
Hi Hattie, yes I've seen this before (actually every time I've run a reduction in the past couple of months). I think there is some backwards compatibility issue when STScI updated some of the reference files. This may potentially be fixed by upgrading to a newer jwst pipeline version (though I have not yet looked into that because upgrading generally introduces a whole new slew of compatibility issues!). In any case, there is a note to this effect in the NIRISS tutorial notebook explaining how to circumnavigate this error. Basically, you just want to create a list of the paths to the saturationstep output files, and then pass that list to the SuperBias step. Something like:
files = [XXXXX_seg001_nis_saturationstep.fits, XXXXX_seg002_nis_saturationstep.fits, ...]
step = stage1.SuperBiasStep(files, output_dir=outdir_s1)
results = step.run(save_results=True, force_redo=True)
For some reason this should work and not give any error, whereas directly passing the data models output from the previous step does.
Thanks for this Michael, this work around worked. Sorry I missed the note in the tutorial!
Following the SOSS reduction usage guide, I encounter the following error when running
Environment is as follows:
Python version
Python3.10.5
, packages installed in virtualenv are:Note: This error is also replicated when downloading the WASP39b data as in the tutorial.