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 the preparation of acq_dict, we use image.acquisition for the keys of acq_dict:
acquisition_dict= {}
forimageinself.well.images:
ifimage.acquisitionisNone:
raiseValueError(
"Cannot get acquisition paths for Zarr files without ""'acquisition' metadata at the well level"
)
ifimage.acquisitionnotinacquisition_dict:
acquisition_dict[image.acquisition] = []
acquisition_dict[image.acquisition].append(image.path)
returnacquisition_dict
The text was updated successfully, but these errors were encountered:
In the following task-function signature, should we replace
reference_cycle
withreference_acquisition
?During the preparation of
acq_dict
, we useimage.acquisition
for the keys ofacq_dict
:The text was updated successfully, but these errors were encountered: