From af29da56b9f0b6f5183abb0b4575b3b8eaa10c0b Mon Sep 17 00:00:00 2001 From: Eduardo Hirata-Miyasaki Date: Fri, 27 Sep 2024 18:13:37 -0700 Subject: [PATCH] fixing process_single_position_setup() to pass tests --- tests/ngff/test_ngff_utils.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/ngff/test_ngff_utils.py b/tests/ngff/test_ngff_utils.py index a141ab5a..1dce5389 100644 --- a/tests/ngff/test_ngff_utils.py +++ b/tests/ngff/test_ngff_utils.py @@ -303,6 +303,9 @@ def process_single_position_setup(draw): position_keys, channel_names, shape, chunks, scale, dtype = draw( plate_setup() ) + # NOTE: Chunking along T,C =1,1 + if chunks is not None: + chunks = (1, 1) + chunks[2:] T, C = shape[:2]