The following runs fine:
mg.microfluidic_chip(
zarr.tile.sel(condition=[0, 1], time=[0, 1], channel=["cy5", "egfp"], exposure=500),
...
)
The following
mg.microfluidic_chip(
zarr.tile.sel(condition=[0, 1], time=[0, 1], channel=["cy5", "egfp"], exposure=[500]),
...
)
returns the error
ValueError: ('condition', 'time', 'channel', 'exposure') must be a permuted list of ('channel', 'im_y', 'im_x', 'condition', 'exposure', 'time'), unless `...` is included
The problem seems to arise when the "original" dimensions in postprocess.py's restore_format are non-contiguous.
The following runs fine:
The following
returns the error
The problem seems to arise when the "original" dimensions in postprocess.py's
restore_formatare non-contiguous.