├── README.md ├── ngff_writer ├── __init__.py ├── array_utils.py ├── constants.py ├── dask_utils.py ├── datastructures.py ├── json_utils.py ├── typing.py ├── validation.py ├── writer.py └── writer_utils.py ├── pyproject.toml ├── setup.py └── tests ├── __init__.py ├── json_utils_test.py ├── reader_test.py ├── resources └── spacem_mini_dataset4x5.zarr │ ├── .zattrs │ ├── .zgroup │ └── w1 │ ├── .zgroup │ ├── ion_images │ ├── .zattrs │ ├── .zgroup │ ├── ion_images_metadata.csv │ └── s0 │ │ ├── 0 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 1 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 2 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 3 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 4 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 5 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 6 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 7 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 8 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 9 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 10 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 11 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 12 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 13 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 14 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 15 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 16 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 17 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 18 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 19 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 20 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 21 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 22 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 23 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 24 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 25 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 26 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 27 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 28 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 29 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 30 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 31 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 32 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 33 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 34 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 35 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 36 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 37 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 38 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 39 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 40 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 41 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 42 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 43 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 44 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 45 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 46 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 47 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 48 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 49 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── 50 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── .zarray │ │ └── .zattrs │ ├── post_maldi │ ├── .zattrs │ ├── .zgroup │ ├── labels │ │ ├── .zattrs │ │ ├── .zgroup │ │ └── ablation_marks │ │ │ ├── .zattrs │ │ │ ├── .zgroup │ │ │ ├── s0 │ │ │ ├── 0 │ │ │ │ └── 0 │ │ │ │ │ └── 0 │ │ │ │ │ ├── 0 │ │ │ │ │ ├── 0 │ │ │ │ │ ├── 1 │ │ │ │ │ └── 2 │ │ │ │ │ ├── 1 │ │ │ │ │ ├── 0 │ │ │ │ │ ├── 1 │ │ │ │ │ └── 2 │ │ │ │ │ └── 2 │ │ │ │ │ ├── 0 │ │ │ │ │ ├── 1 │ │ │ │ │ └── 2 │ │ │ ├── .zarray │ │ │ └── .zattrs │ │ │ ├── s1 │ │ │ ├── 0 │ │ │ │ └── 0 │ │ │ │ │ └── 0 │ │ │ │ │ ├── 0 │ │ │ │ │ ├── 0 │ │ │ │ │ └── 1 │ │ │ │ │ └── 1 │ │ │ │ │ ├── 0 │ │ │ │ │ └── 1 │ │ │ ├── .zarray │ │ │ └── .zattrs │ │ │ └── s2 │ │ │ ├── 0 │ │ │ └── 0 │ │ │ │ └── 0 │ │ │ │ └── 0 │ │ │ │ └── 0 │ │ │ ├── .zarray │ │ │ └── .zattrs │ ├── s0 │ │ ├── 0 │ │ │ ├── 0 │ │ │ │ └── 0 │ │ │ │ │ ├── 0 │ │ │ │ │ ├── 0 │ │ │ │ │ ├── 1 │ │ │ │ │ ├── 2 │ │ │ │ │ ├── 3 │ │ │ │ │ ├── 4 │ │ │ │ │ └── 5 │ │ │ │ │ ├── 1 │ │ │ │ │ ├── 0 │ │ │ │ │ ├── 1 │ │ │ │ │ ├── 2 │ │ │ │ │ ├── 3 │ │ │ │ │ ├── 4 │ │ │ │ │ └── 5 │ │ │ │ │ ├── 2 │ │ │ │ │ ├── 0 │ │ │ │ │ ├── 1 │ │ │ │ │ ├── 2 │ │ │ │ │ ├── 3 │ │ │ │ │ ├── 4 │ │ │ │ │ └── 5 │ │ │ │ │ ├── 3 │ │ │ │ │ ├── 0 │ │ │ │ │ ├── 1 │ │ │ │ │ ├── 2 │ │ │ │ │ ├── 3 │ │ │ │ │ ├── 4 │ │ │ │ │ └── 5 │ │ │ │ │ ├── 4 │ │ │ │ │ ├── 0 │ │ │ │ │ ├── 1 │ │ │ │ │ ├── 2 │ │ │ │ │ ├── 3 │ │ │ │ │ ├── 4 │ │ │ │ │ └── 5 │ │ │ │ │ ├── 5 │ │ │ │ │ ├── 0 │ │ │ │ │ ├── 1 │ │ │ │ │ ├── 2 │ │ │ │ │ ├── 3 │ │ │ │ │ ├── 4 │ │ │ │ │ └── 5 │ │ │ │ │ └── 6 │ │ │ │ │ ├── 0 │ │ │ │ │ ├── 1 │ │ │ │ │ ├── 2 │ │ │ │ │ ├── 3 │ │ │ │ │ ├── 4 │ │ │ │ │ └── 5 │ │ │ └── 1 │ │ │ │ └── 0 │ │ │ │ ├── 0 │ │ │ │ ├── 0 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ ├── 3 │ │ │ │ ├── 4 │ │ │ │ └── 5 │ │ │ │ ├── 1 │ │ │ │ ├── 0 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ ├── 3 │ │ │ │ ├── 4 │ │ │ │ └── 5 │ │ │ │ ├── 2 │ │ │ │ ├── 0 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ ├── 3 │ │ │ │ ├── 4 │ │ │ │ └── 5 │ │ │ │ ├── 3 │ │ │ │ ├── 0 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ ├── 3 │ │ │ │ ├── 4 │ │ │ │ └── 5 │ │ │ │ ├── 4 │ │ │ │ ├── 0 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ ├── 3 │ │ │ │ ├── 4 │ │ │ │ └── 5 │ │ │ │ ├── 5 │ │ │ │ ├── 0 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ ├── 3 │ │ │ │ ├── 4 │ │ │ │ └── 5 │ │ │ │ └── 6 │ │ │ │ ├── 0 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ ├── 3 │ │ │ │ ├── 4 │ │ │ │ └── 5 │ │ ├── .zarray │ │ └── .zattrs │ ├── s1 │ │ ├── 0 │ │ │ ├── 0 │ │ │ │ └── 0 │ │ │ │ │ ├── 0 │ │ │ │ │ ├── 0 │ │ │ │ │ ├── 1 │ │ │ │ │ └── 2 │ │ │ │ │ ├── 1 │ │ │ │ │ ├── 0 │ │ │ │ │ ├── 1 │ │ │ │ │ └── 2 │ │ │ │ │ ├── 2 │ │ │ │ │ ├── 0 │ │ │ │ │ ├── 1 │ │ │ │ │ └── 2 │ │ │ │ │ └── 3 │ │ │ │ │ ├── 0 │ │ │ │ │ ├── 1 │ │ │ │ │ └── 2 │ │ │ └── 1 │ │ │ │ └── 0 │ │ │ │ ├── 0 │ │ │ │ ├── 0 │ │ │ │ ├── 1 │ │ │ │ └── 2 │ │ │ │ ├── 1 │ │ │ │ ├── 0 │ │ │ │ ├── 1 │ │ │ │ └── 2 │ │ │ │ ├── 2 │ │ │ │ ├── 0 │ │ │ │ ├── 1 │ │ │ │ └── 2 │ │ │ │ └── 3 │ │ │ │ ├── 0 │ │ │ │ ├── 1 │ │ │ │ └── 2 │ │ ├── .zarray │ │ └── .zattrs │ └── s2 │ │ ├── 0 │ │ ├── 0 │ │ │ └── 0 │ │ │ │ ├── 0 │ │ │ │ ├── 0 │ │ │ │ └── 1 │ │ │ │ └── 1 │ │ │ │ ├── 0 │ │ │ │ └── 1 │ │ └── 1 │ │ │ └── 0 │ │ │ ├── 0 │ │ │ ├── 0 │ │ │ └── 1 │ │ │ └── 1 │ │ │ ├── 0 │ │ │ └── 1 │ │ ├── .zarray │ │ └── .zattrs │ └── pre_maldi │ ├── .zattrs │ ├── .zgroup │ ├── labels │ ├── .zattrs │ ├── .zgroup │ ├── ablation_marks │ │ ├── .zattrs │ │ ├── .zgroup │ │ ├── s0 │ │ │ ├── 0 │ │ │ │ └── 0 │ │ │ │ │ └── 0 │ │ │ │ │ ├── 0 │ │ │ │ │ ├── 0 │ │ │ │ │ └── 1 │ │ │ │ │ └── 1 │ │ │ │ │ ├── 0 │ │ │ │ │ └── 1 │ │ │ ├── .zarray │ │ │ └── .zattrs │ │ └── s1 │ │ │ ├── 0 │ │ │ └── 0 │ │ │ │ └── 0 │ │ │ │ └── 0 │ │ │ │ └── 0 │ │ │ ├── .zarray │ │ │ └── .zattrs │ └── cells │ │ ├── .zattrs │ │ ├── .zgroup │ │ ├── s0 │ │ ├── 0 │ │ │ └── 0 │ │ │ │ └── 0 │ │ │ │ ├── 0 │ │ │ │ ├── 0 │ │ │ │ └── 1 │ │ │ │ └── 1 │ │ │ │ ├── 0 │ │ │ │ └── 1 │ │ ├── .zarray │ │ └── .zattrs │ │ └── s1 │ │ ├── 0 │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ │ └── 0 │ │ ├── .zarray │ │ └── .zattrs │ ├── s0 │ ├── 0 │ │ ├── 0 │ │ │ └── 0 │ │ │ │ ├── 0 │ │ │ │ ├── 0 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ └── 3 │ │ │ │ ├── 1 │ │ │ │ ├── 0 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ └── 3 │ │ │ │ └── 2 │ │ │ │ ├── 0 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ └── 3 │ │ ├── 1 │ │ │ └── 0 │ │ │ │ ├── 0 │ │ │ │ ├── 0 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ └── 3 │ │ │ │ ├── 1 │ │ │ │ ├── 0 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ └── 3 │ │ │ │ └── 2 │ │ │ │ ├── 0 │ │ │ │ ├── 1 │ │ │ │ ├── 2 │ │ │ │ └── 3 │ │ └── 2 │ │ │ └── 0 │ │ │ ├── 0 │ │ │ ├── 0 │ │ │ ├── 1 │ │ │ ├── 2 │ │ │ └── 3 │ │ │ ├── 1 │ │ │ ├── 0 │ │ │ ├── 1 │ │ │ ├── 2 │ │ │ └── 3 │ │ │ └── 2 │ │ │ ├── 0 │ │ │ ├── 1 │ │ │ ├── 2 │ │ │ └── 3 │ ├── .zarray │ └── .zattrs │ └── s1 │ ├── 0 │ ├── 0 │ │ └── 0 │ │ │ ├── 0 │ │ │ ├── 0 │ │ │ └── 1 │ │ │ └── 1 │ │ │ ├── 0 │ │ │ └── 1 │ ├── 1 │ │ └── 0 │ │ │ ├── 0 │ │ │ ├── 0 │ │ │ └── 1 │ │ │ └── 1 │ │ │ ├── 0 │ │ │ └── 1 │ └── 2 │ │ └── 0 │ │ ├── 0 │ │ ├── 0 │ │ └── 1 │ │ └── 1 │ │ ├── 0 │ │ └── 1 │ ├── .zarray │ └── .zattrs └── writer_test.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/README.md -------------------------------------------------------------------------------- /ngff_writer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ngff_writer/array_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/ngff_writer/array_utils.py -------------------------------------------------------------------------------- /ngff_writer/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/ngff_writer/constants.py -------------------------------------------------------------------------------- /ngff_writer/dask_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/ngff_writer/dask_utils.py -------------------------------------------------------------------------------- /ngff_writer/datastructures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/ngff_writer/datastructures.py -------------------------------------------------------------------------------- /ngff_writer/json_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/ngff_writer/json_utils.py -------------------------------------------------------------------------------- /ngff_writer/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/ngff_writer/typing.py -------------------------------------------------------------------------------- /ngff_writer/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/ngff_writer/validation.py -------------------------------------------------------------------------------- /ngff_writer/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/ngff_writer/writer.py -------------------------------------------------------------------------------- /ngff_writer/writer_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/ngff_writer/writer_utils.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/json_utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/json_utils_test.py -------------------------------------------------------------------------------- /tests/reader_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/reader_test.py -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/.zattrs -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/.zattrs -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/ion_images_metadata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/ion_images_metadata.csv -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/.zarray -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/.zattrs -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/0/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/0/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/1/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/1/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/10/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/10/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/11/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/11/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/12/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/12/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/13/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/13/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/14/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/14/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/15/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/15/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/16/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/16/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/17/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/17/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/18/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/18/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/19/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/19/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/2/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/2/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/20/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/20/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/21/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/21/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/22/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/22/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/23/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/23/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/24/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/24/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/25/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/25/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/26/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/26/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/27/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/27/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/28/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/28/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/29/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/29/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/3/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/3/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/30/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/30/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/31/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/31/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/32/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/32/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/33/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/33/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/34/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/34/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/35/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/35/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/36/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/36/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/37/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/37/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/38/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/38/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/39/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/39/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/4/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/4/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/40/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/40/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/41/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/41/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/42/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/42/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/43/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/43/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/44/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/44/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/45/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/45/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/46/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/46/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/47/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/47/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/48/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/48/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/49/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/49/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/5/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/5/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/50/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/50/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/6/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/6/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/7/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/7/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/8/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/8/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/9/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/ion_images/s0/9/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/.zattrs -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/.zattrs -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/.zattrs -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/s0/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/s0/.zarray -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/s0/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/s0/.zattrs -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/s0/0/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/s0/0/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/s0/0/0/0/0/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/s0/0/0/0/0/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/s0/0/0/0/0/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/s0/0/0/0/0/2 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/s0/0/0/0/1/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/s0/0/0/0/1/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/s0/0/0/0/1/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/s0/0/0/0/1/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/s0/0/0/0/1/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/s0/0/0/0/1/2 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/s0/0/0/0/2/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/s0/0/0/0/2/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/s0/0/0/0/2/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/s0/0/0/0/2/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/s0/0/0/0/2/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/s0/0/0/0/2/2 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/s1/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/s1/.zarray -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/s1/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/s1/.zattrs -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/s1/0/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/s1/0/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/s1/0/0/0/0/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/s1/0/0/0/0/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/s1/0/0/0/1/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/s1/0/0/0/1/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/s1/0/0/0/1/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/s1/0/0/0/1/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/s2/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/s2/.zarray -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/s2/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/s2/.zattrs -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/s2/0/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/labels/ablation_marks/s2/0/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/.zarray -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/.zattrs -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/0/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/0/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/0/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/0/2 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/0/3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/0/3 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/0/4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/0/4 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/0/5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/0/5 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/1/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/1/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/1/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/1/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/1/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/1/2 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/1/3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/1/3 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/1/4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/1/4 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/1/5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/1/5 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/2/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/2/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/2/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/2/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/2/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/2/2 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/2/3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/2/3 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/2/4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/2/4 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/2/5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/2/5 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/3/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/3/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/3/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/3/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/3/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/3/2 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/3/3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/3/3 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/3/4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/3/4 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/3/5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/3/5 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/4/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/4/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/4/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/4/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/4/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/4/2 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/4/3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/4/3 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/4/4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/4/4 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/4/5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/4/5 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/5/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/5/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/5/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/5/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/5/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/5/2 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/5/3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/5/3 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/5/4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/5/4 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/5/5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/5/5 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/6/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/6/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/6/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/6/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/6/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/6/2 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/6/3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/6/3 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/6/4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/6/4 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/6/5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/0/0/6/5 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/0/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/0/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/0/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/0/2 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/0/3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/0/3 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/0/4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/0/4 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/0/5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/0/5 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/1/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/1/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/1/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/1/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/1/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/1/2 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/1/3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/1/3 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/1/4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/1/4 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/1/5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/1/5 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/2/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/2/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/2/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/2/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/2/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/2/2 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/2/3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/2/3 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/2/4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/2/4 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/2/5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/2/5 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/3/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/3/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/3/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/3/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/3/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/3/2 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/3/3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/3/3 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/3/4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/3/4 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/3/5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/3/5 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/4/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/4/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/4/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/4/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/4/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/4/2 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/4/3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/4/3 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/4/4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/4/4 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/4/5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/4/5 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/5/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/5/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/5/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/5/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/5/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/5/2 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/5/3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/5/3 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/5/4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/5/4 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/5/5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/5/5 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/6/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/6/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/6/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/6/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/6/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/6/2 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/6/3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/6/3 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/6/4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/6/4 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/6/5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s0/0/1/0/6/5 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/.zarray -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/.zattrs -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/0/0/0/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/0/0/0/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/0/0/0/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/0/0/0/2 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/0/0/1/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/0/0/1/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/0/0/1/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/0/0/1/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/0/0/1/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/0/0/1/2 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/0/0/2/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/0/0/2/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/0/0/2/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/0/0/2/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/0/0/2/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/0/0/2/2 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/0/0/3/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/0/0/3/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/0/0/3/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/0/0/3/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/0/0/3/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/0/0/3/2 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/1/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/1/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/1/0/0/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/1/0/0/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/1/0/0/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/1/0/0/2 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/1/0/1/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/1/0/1/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/1/0/1/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/1/0/1/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/1/0/1/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/1/0/1/2 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/1/0/2/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/1/0/2/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/1/0/2/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/1/0/2/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/1/0/2/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/1/0/2/2 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/1/0/3/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/1/0/3/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/1/0/3/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/1/0/3/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/1/0/3/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s1/0/1/0/3/2 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s2/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s2/.zarray -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s2/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s2/.zattrs -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s2/0/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s2/0/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s2/0/0/0/0/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s2/0/0/0/0/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s2/0/0/0/1/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s2/0/0/0/1/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s2/0/0/0/1/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s2/0/0/0/1/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s2/0/1/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s2/0/1/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s2/0/1/0/0/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s2/0/1/0/0/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s2/0/1/0/1/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s2/0/1/0/1/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s2/0/1/0/1/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/post_maldi/s2/0/1/0/1/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/.zattrs -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/.zattrs -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/ablation_marks/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/ablation_marks/.zattrs -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/ablation_marks/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/ablation_marks/s0/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/ablation_marks/s0/.zarray -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/ablation_marks/s0/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/ablation_marks/s0/.zattrs -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/ablation_marks/s0/0/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/ablation_marks/s0/0/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/ablation_marks/s0/0/0/0/0/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/ablation_marks/s0/0/0/0/0/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/ablation_marks/s0/0/0/0/1/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/ablation_marks/s0/0/0/0/1/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/ablation_marks/s0/0/0/0/1/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/ablation_marks/s0/0/0/0/1/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/ablation_marks/s1/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/ablation_marks/s1/.zarray -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/ablation_marks/s1/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/ablation_marks/s1/.zattrs -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/ablation_marks/s1/0/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/ablation_marks/s1/0/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/cells/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/cells/.zattrs -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/cells/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/cells/s0/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/cells/s0/.zarray -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/cells/s0/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/cells/s0/.zattrs -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/cells/s0/0/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/cells/s0/0/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/cells/s0/0/0/0/0/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/cells/s0/0/0/0/0/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/cells/s0/0/0/0/1/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/cells/s0/0/0/0/1/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/cells/s0/0/0/0/1/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/cells/s0/0/0/0/1/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/cells/s1/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/cells/s1/.zarray -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/cells/s1/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/cells/s1/.zattrs -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/cells/s1/0/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/labels/cells/s1/0/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/.zarray -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/.zattrs -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/0/0/0/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/0/0/0/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/0/0/0/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/0/0/0/2 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/0/0/0/3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/0/0/0/3 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/0/0/1/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/0/0/1/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/0/0/1/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/0/0/1/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/0/0/1/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/0/0/1/2 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/0/0/1/3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/0/0/1/3 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/0/0/2/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/0/0/2/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/0/0/2/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/0/0/2/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/0/0/2/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/0/0/2/2 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/0/0/2/3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/0/0/2/3 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/1/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/1/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/1/0/0/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/1/0/0/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/1/0/0/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/1/0/0/2 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/1/0/0/3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/1/0/0/3 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/1/0/1/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/1/0/1/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/1/0/1/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/1/0/1/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/1/0/1/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/1/0/1/2 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/1/0/1/3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/1/0/1/3 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/1/0/2/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/1/0/2/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/1/0/2/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/1/0/2/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/1/0/2/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/1/0/2/2 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/1/0/2/3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/1/0/2/3 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/2/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/2/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/2/0/0/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/2/0/0/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/2/0/0/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/2/0/0/2 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/2/0/0/3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/2/0/0/3 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/2/0/1/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/2/0/1/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/2/0/1/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/2/0/1/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/2/0/1/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/2/0/1/2 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/2/0/1/3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/2/0/1/3 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/2/0/2/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/2/0/2/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/2/0/2/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/2/0/2/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/2/0/2/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/2/0/2/2 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/2/0/2/3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s0/0/2/0/2/3 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s1/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s1/.zarray -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s1/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s1/.zattrs -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s1/0/0/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s1/0/0/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s1/0/0/0/0/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s1/0/0/0/0/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s1/0/0/0/1/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s1/0/0/0/1/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s1/0/0/0/1/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s1/0/0/0/1/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s1/0/1/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s1/0/1/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s1/0/1/0/0/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s1/0/1/0/0/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s1/0/1/0/1/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s1/0/1/0/1/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s1/0/1/0/1/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s1/0/1/0/1/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s1/0/2/0/0/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s1/0/2/0/0/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s1/0/2/0/0/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s1/0/2/0/0/1 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s1/0/2/0/1/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s1/0/2/0/1/0 -------------------------------------------------------------------------------- /tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s1/0/2/0/1/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/resources/spacem_mini_dataset4x5.zarr/w1/pre_maldi/s1/0/2/0/1/1 -------------------------------------------------------------------------------- /tests/writer_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aeisenbarth/ngff-writer/HEAD/tests/writer_test.py --------------------------------------------------------------------------------