ome-arrow 0.0.3__tar.gz → 0.0.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/.github/workflows/publish-docs.yml +1 -1
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/.github/workflows/publish-pypi.yml +1 -1
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/.github/workflows/run-tests.yml +4 -2
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/.pre-commit-config.yaml +2 -2
- ome_arrow-0.0.5/CITATION.cff +157 -0
- {ome_arrow-0.0.3/src/ome_arrow.egg-info → ome_arrow-0.0.5}/PKG-INFO +24 -10
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/README.md +14 -3
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/docs/src/examples/learning_to_fly_with_ome-arrow.ipynb +117 -12
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/docs/src/examples/learning_to_fly_with_ome-arrow.py +24 -1
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/pyproject.toml +21 -2
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/src/ome_arrow/__init__.py +8 -1
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/src/ome_arrow/_version.py +3 -3
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/src/ome_arrow/core.py +51 -8
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/src/ome_arrow/export.py +58 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/src/ome_arrow/ingest.py +304 -112
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/src/ome_arrow/view.py +46 -5
- {ome_arrow-0.0.3 → ome_arrow-0.0.5/src/ome_arrow.egg-info}/PKG-INFO +24 -10
- ome_arrow-0.0.5/src/ome_arrow.egg-info/SOURCES.txt +344 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/src/ome_arrow.egg-info/requires.txt +7 -2
- ome_arrow-0.0.5/tests/data/JUMP-BR00117006/BR00117006.ome.parquet +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/0/0/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/0/1/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/0/10/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/0/11/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/0/12/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/0/13/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/0/14/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/0/15/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/0/16/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/0/17/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/0/18/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/0/19/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/0/2/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/0/20/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/0/21/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/0/22/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/0/23/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/0/3/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/0/4/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/0/5/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/0/6/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/0/7/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/0/8/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/0/9/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/1/0/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/1/1/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/1/10/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/1/11/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/1/12/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/1/13/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/1/14/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/1/15/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/1/16/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/1/17/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/1/18/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/1/19/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/1/2/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/1/20/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/1/21/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/1/22/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/1/23/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/1/3/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/1/4/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/1/5/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/1/6/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/1/7/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/1/8/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/c/1/9/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/0/zarr.json +1 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/0/0/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/0/1/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/0/10/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/0/11/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/0/12/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/0/13/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/0/14/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/0/15/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/0/16/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/0/17/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/0/18/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/0/19/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/0/2/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/0/20/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/0/21/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/0/22/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/0/23/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/0/3/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/0/4/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/0/5/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/0/6/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/0/7/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/0/8/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/0/9/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/1/0/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/1/1/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/1/10/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/1/11/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/1/12/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/1/13/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/1/14/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/1/15/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/1/16/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/1/17/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/1/18/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/1/19/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/1/2/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/1/20/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/1/21/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/1/22/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/1/23/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/1/3/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/1/4/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/1/5/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/1/6/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/1/7/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/1/8/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/c/1/9/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/1/zarr.json +1 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/0/0/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/0/1/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/0/10/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/0/11/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/0/12/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/0/13/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/0/14/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/0/15/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/0/16/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/0/17/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/0/18/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/0/19/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/0/2/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/0/20/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/0/21/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/0/22/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/0/23/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/0/3/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/0/4/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/0/5/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/0/6/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/0/7/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/0/8/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/0/9/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/1/0/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/1/1/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/1/10/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/1/11/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/1/12/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/1/13/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/1/14/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/1/15/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/1/16/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/1/17/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/1/18/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/1/19/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/1/2/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/1/20/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/1/21/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/1/22/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/1/23/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/1/3/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/1/4/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/1/5/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/1/6/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/1/7/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/1/8/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/c/1/9/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/2/zarr.json +1 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/6001240_labels.zarr/ro-crate-metadata.json +39 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/10/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/11/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/12/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/13/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/14/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/15/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/16/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/17/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/18/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/19/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/2/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/20/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/21/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/22/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/23/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/3/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/4/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/5/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/6/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/7/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/8/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/9/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/zarr.json +1 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/10/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/11/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/12/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/13/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/14/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/15/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/16/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/17/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/18/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/19/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/2/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/20/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/21/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/22/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/23/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/3/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/4/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/5/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/6/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/7/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/8/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/9/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/zarr.json +1 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/10/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/11/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/12/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/13/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/14/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/15/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/16/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/17/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/18/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/19/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/2/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/20/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/21/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/22/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/23/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/3/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/4/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/5/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/6/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/7/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/8/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/9/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/zarr.json +1 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/10/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/11/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/12/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/13/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/14/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/15/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/16/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/17/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/18/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/19/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/2/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/20/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/21/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/22/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/23/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/3/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/4/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/5/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/6/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/7/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/8/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/9/0/0 +0 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/zarr.json +1 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/0/zarr.json +1 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/labels/zarr.json +1 -0
- ome_arrow-0.0.5/tests/data/idr0062A/6001240_labels.zarr/zarr.json +1 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/test_core.py +92 -1
- ome_arrow-0.0.5/tests/test_scaling.py +100 -0
- ome_arrow-0.0.5/tests/test_view.py +20 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/uv.lock +65 -10
- ome_arrow-0.0.3/CITATION.cff +0 -62
- ome_arrow-0.0.3/src/ome_arrow.egg-info/SOURCES.txt +0 -98
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/.github/ISSUE_TEMPLATE/issue.yml +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/.github/dependabot.yml +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/.github/release-drafter.yml +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/.github/workflows/draft-release.yml +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/.gitignore +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/.python-version +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/CODE_OF_CONDUCT.md +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/CONTRIBUTING.md +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/LICENSE +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/docs/src/_static/logo.png +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/docs/src/_static/references_to_files.png +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/docs/src/_static/various_ome_arrow_schema.png +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/docs/src/conf.py +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/docs/src/index.md +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/docs/src/python-api.md +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/setup.cfg +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/src/ome_arrow/meta.py +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/src/ome_arrow/transform.py +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/src/ome_arrow/utils.py +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/src/ome_arrow.egg-info/dependency_links.txt +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/src/ome_arrow.egg-info/top_level.txt +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/conftest.py +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/examplehuman/AS_09125_050116030001_D03f00d0.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/examplehuman/AS_09125_050116030001_D03f00d1.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/examplehuman/AS_09125_050116030001_D03f00d2.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS000.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS001.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS002.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS003.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS004.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS005.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS006.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS007.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS008.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS009.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS010.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS011.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS012.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS013.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS014.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS015.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS016.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS017.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS018.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS019.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS020.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS021.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS000.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS001.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS002.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS003.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS004.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS005.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS006.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS007.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS008.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS009.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS010.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS011.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS012.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS013.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS014.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS015.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS016.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS017.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS018.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS019.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS020.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS021.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/ome-artificial-5d-datasets/4D-series.ome.tiff +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/ome-artificial-5d-datasets/multi-channel-4D-series.ome.tiff +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/ome-artificial-5d-datasets/multi-channel-time-series.ome.tiff +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/ome-artificial-5d-datasets/multi-channel-z-series.ome.tiff +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/ome-artificial-5d-datasets/multi-channel.ome.tiff +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/ome-artificial-5d-datasets/single-channel.ome.tiff +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/ome-artificial-5d-datasets/time-series.ome.tif +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/data/ome-artificial-5d-datasets/z-series.ome.tiff +0 -0
- {ome_arrow-0.0.3 → ome_arrow-0.0.5}/tests/test_utils.py +0 -0
|
@@ -13,7 +13,7 @@ jobs:
|
|
|
13
13
|
runs-on: ubuntu-24.04
|
|
14
14
|
steps:
|
|
15
15
|
# checks out the repo
|
|
16
|
-
- uses: actions/checkout@
|
|
16
|
+
- uses: actions/checkout@v6
|
|
17
17
|
# run pre-commit
|
|
18
18
|
- name: Python setup
|
|
19
19
|
uses: actions/setup-python@v6
|
|
@@ -35,12 +35,14 @@ jobs:
|
|
|
35
35
|
OS: ${{ matrix.os }}
|
|
36
36
|
steps:
|
|
37
37
|
- name: Checkout
|
|
38
|
-
uses: actions/checkout@
|
|
38
|
+
uses: actions/checkout@v6
|
|
39
39
|
- name: Python setup
|
|
40
40
|
uses: actions/setup-python@v6
|
|
41
41
|
with:
|
|
42
42
|
python-version: ${{ matrix.python_version }}
|
|
43
43
|
- name: Install the latest version of uv
|
|
44
44
|
uses: astral-sh/setup-uv@v7
|
|
45
|
+
- name: Sync dependencies (with viz extra)
|
|
46
|
+
run: uv sync --frozen --extra viz
|
|
45
47
|
- name: Run pytest
|
|
46
48
|
run: uv run --frozen pytest
|
|
@@ -39,12 +39,12 @@ repos:
|
|
|
39
39
|
- id: yamllint
|
|
40
40
|
exclude: pre-commit-config.yaml
|
|
41
41
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
42
|
-
rev: "v0.14.
|
|
42
|
+
rev: "v0.14.10"
|
|
43
43
|
hooks:
|
|
44
44
|
- id: ruff-format
|
|
45
45
|
- id: ruff-check
|
|
46
46
|
- repo: https://github.com/rhysd/actionlint
|
|
47
|
-
rev: v1.7.
|
|
47
|
+
rev: v1.7.10
|
|
48
48
|
hooks:
|
|
49
49
|
- id: actionlint
|
|
50
50
|
- repo: https://gitlab.com/vojko.pribudic.foss/pre-commit-update
|
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
# This CITATION.cff file was generated with cffinit.
|
|
2
|
+
# Visit https://bit.ly/cffinit to generate yours today!
|
|
3
|
+
---
|
|
4
|
+
cff-version: 1.2.0
|
|
5
|
+
title: ome_arrow
|
|
6
|
+
message: >-
|
|
7
|
+
If you use this software, please cite it using the
|
|
8
|
+
metadata from the CITATION.cff file.
|
|
9
|
+
type: software
|
|
10
|
+
authors:
|
|
11
|
+
- given-names: Dave
|
|
12
|
+
family-names: Bunten
|
|
13
|
+
orcid: "https://orcid.org/0000-0001-6041-3665"
|
|
14
|
+
- given-names: Jenna
|
|
15
|
+
family-names: Tomkinson
|
|
16
|
+
orcid: 'https://orcid.org/0000-0003-2676-5813'
|
|
17
|
+
- given-names: Michael
|
|
18
|
+
family-names: Lippincott
|
|
19
|
+
orcid: 'https://orcid.org/0000-0002-8637-1448'
|
|
20
|
+
- given-names: Cameron
|
|
21
|
+
family-names: Mattson
|
|
22
|
+
orcid: 'https://orcid.org/0009-0008-4969-779X'
|
|
23
|
+
- given-names: Gregory
|
|
24
|
+
family-names: Way
|
|
25
|
+
orcid: 'https://orcid.org/0000-0002-0503-9348'
|
|
26
|
+
repository-code: "https://github.com/wayscience/ome-arrow"
|
|
27
|
+
abstract: >-
|
|
28
|
+
Using OME specifications with Apache Arrow for fast, queryable, and language agnostic bioimage data.
|
|
29
|
+
keywords:
|
|
30
|
+
- python
|
|
31
|
+
license: BSD-3-Clause
|
|
32
|
+
identifiers:
|
|
33
|
+
- description: Zenodo software DOI
|
|
34
|
+
type: doi
|
|
35
|
+
value: 10.5281/zenodo.17664969
|
|
36
|
+
references:
|
|
37
|
+
- authors:
|
|
38
|
+
- name: "ExampleHuman CellProfiler Data Team"
|
|
39
|
+
date-accessed: "2022-09-01"
|
|
40
|
+
title: ExampleHuman CellProfiler Data
|
|
41
|
+
type: data
|
|
42
|
+
repository-code: "https://github.com/CellProfiler/examples/tree/master/ExampleHuman"
|
|
43
|
+
url: "https://cellprofiler.org/examples"
|
|
44
|
+
scope: "ExampleHuman"
|
|
45
|
+
notes: >-
|
|
46
|
+
ExampleHuman CellProfiler data is used to help validate expected results.
|
|
47
|
+
identifiers:
|
|
48
|
+
- description: "README.md with Citation Information"
|
|
49
|
+
type: url
|
|
50
|
+
value: "https://github.com/CellProfiler/examples/blob/master/ExampleHuman/README.md"
|
|
51
|
+
- authors:
|
|
52
|
+
- name: "Open Microscopy Environment (OME) Team"
|
|
53
|
+
date-accessed: "2025-11-07"
|
|
54
|
+
title: OME-TIFF Sample Data
|
|
55
|
+
type: data
|
|
56
|
+
repository-code: "https://github.com/ome/ome-model"
|
|
57
|
+
url: "https://ome-model.readthedocs.io/en/stable/ome-tiff/data.html"
|
|
58
|
+
scope: "OME-TIFF Example Datasets"
|
|
59
|
+
notes: >-
|
|
60
|
+
The OME-TIFF sample datasets illustrate the structure and metadata conventions
|
|
61
|
+
used in the OME-TIFF format, including images for testing readers, writers,
|
|
62
|
+
and visualization tools.
|
|
63
|
+
identifiers:
|
|
64
|
+
- description: "OME Model Documentation — OME-TIFF Sample Data"
|
|
65
|
+
type: url
|
|
66
|
+
value: "https://ome-model.readthedocs.io/en/stable/ome-tiff/data.html"
|
|
67
|
+
- authors:
|
|
68
|
+
- family-names: Chandrasekaran
|
|
69
|
+
given-names: Srinivas Niranj
|
|
70
|
+
- family-names: Cimini
|
|
71
|
+
given-names: Beth A.
|
|
72
|
+
- family-names: Goodale
|
|
73
|
+
given-names: Amy
|
|
74
|
+
- family-names: Miller
|
|
75
|
+
given-names: Lisa
|
|
76
|
+
- family-names: Kost-Alimova
|
|
77
|
+
given-names: Maria
|
|
78
|
+
- family-names: Jamali
|
|
79
|
+
given-names: Nasim
|
|
80
|
+
- family-names: Doench
|
|
81
|
+
given-names: John G.
|
|
82
|
+
- family-names: Fritchman
|
|
83
|
+
given-names: Briana
|
|
84
|
+
- family-names: Skepner
|
|
85
|
+
given-names: Adam
|
|
86
|
+
- family-names: Melanson
|
|
87
|
+
given-names: Michelle
|
|
88
|
+
- family-names: Kalinin
|
|
89
|
+
given-names: Alexandr A.
|
|
90
|
+
- family-names: Arevalo
|
|
91
|
+
given-names: John
|
|
92
|
+
- family-names: Haghighi
|
|
93
|
+
given-names: Marzieh
|
|
94
|
+
- family-names: Caicedo
|
|
95
|
+
given-names: Juan C.
|
|
96
|
+
- family-names: Kuhn
|
|
97
|
+
given-names: Daniel
|
|
98
|
+
- family-names: Hernandez
|
|
99
|
+
given-names: Desiree
|
|
100
|
+
- family-names: Berstler
|
|
101
|
+
given-names: James
|
|
102
|
+
- family-names: Shafqat-Abbasi
|
|
103
|
+
given-names: Hamdah
|
|
104
|
+
- family-names: Root
|
|
105
|
+
given-names: David E.
|
|
106
|
+
- family-names: Swalley
|
|
107
|
+
given-names: Susanne E.
|
|
108
|
+
- family-names: Garg
|
|
109
|
+
given-names: Sakshi
|
|
110
|
+
- family-names: Singh
|
|
111
|
+
given-names: Shantanu
|
|
112
|
+
- family-names: Carpenter
|
|
113
|
+
given-names: Anne E.
|
|
114
|
+
date-accessed: "2024-08-21"
|
|
115
|
+
title: >-
|
|
116
|
+
Three million images and morphological profiles of cells treated with matched chemical and genetic perturbations
|
|
117
|
+
type: article
|
|
118
|
+
issn: 1548-7105
|
|
119
|
+
issue: 6
|
|
120
|
+
journal: Nature Methods
|
|
121
|
+
pages: 1114-1121
|
|
122
|
+
volume: 21
|
|
123
|
+
url: https://doi.org/10.1038/s41592-024-02241-6
|
|
124
|
+
date-published: "2024-06-01"
|
|
125
|
+
identifiers:
|
|
126
|
+
- type: doi
|
|
127
|
+
value: 10.1038/s41592-024-02241-6
|
|
128
|
+
notes: >-
|
|
129
|
+
JUMP (cpg0000-jump-pilot) was used to help demonstrate CytoDataFrame performance
|
|
130
|
+
with large data. See here for more information:
|
|
131
|
+
https://github.com/broadinstitute/cellpainting-gallery
|
|
132
|
+
- type: article
|
|
133
|
+
authors:
|
|
134
|
+
- family-names: Blin
|
|
135
|
+
given-names: Guillaume
|
|
136
|
+
- family-names: Sadurska
|
|
137
|
+
given-names: Dominika
|
|
138
|
+
- family-names: Portero Migueles
|
|
139
|
+
given-names: Rafael
|
|
140
|
+
- family-names: Chen
|
|
141
|
+
given-names: Ni
|
|
142
|
+
- family-names: Watson
|
|
143
|
+
given-names: James A.
|
|
144
|
+
- family-names: Lowell
|
|
145
|
+
given-names: Sally
|
|
146
|
+
title: "Nessys: A new set of tools for the automated detection of nuclei within intact tissues and dense 3D cultures"
|
|
147
|
+
journal: PLoS Biology
|
|
148
|
+
volume: "17"
|
|
149
|
+
issue: "8"
|
|
150
|
+
pages: e3000388
|
|
151
|
+
year: 2019
|
|
152
|
+
doi: "10.1371/journal.pbio.3000388"
|
|
153
|
+
url: "https://doi.org/10.1371/journal.pbio.3000388"
|
|
154
|
+
notes: >
|
|
155
|
+
This work used the file "6001240_labels.zarr" from the DISCEPTS imaging
|
|
156
|
+
dataset, available through the Image Data Resource (IDR) under accession
|
|
157
|
+
number idr0062.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ome-arrow
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.5
|
|
4
4
|
Summary: Using OME specifications with Apache Arrow for fast, queryable, and language agnostic bioimage data.
|
|
5
5
|
Author: Dave Bunten
|
|
6
6
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
@@ -16,25 +16,29 @@ Requires-Dist: bioio-ome-tiff>=1.4
|
|
|
16
16
|
Requires-Dist: bioio-ome-zarr>=3.0.3
|
|
17
17
|
Requires-Dist: bioio-tifffile>=1.3
|
|
18
18
|
Requires-Dist: fire>=0.7
|
|
19
|
-
Requires-Dist: ipywidgets>=8.1.8
|
|
20
|
-
Requires-Dist: jupyterlab-widgets>=3.0.16
|
|
21
19
|
Requires-Dist: matplotlib>=3.10.7
|
|
22
20
|
Requires-Dist: numpy>=2.2.6
|
|
23
21
|
Requires-Dist: pandas>=2.2.3
|
|
24
22
|
Requires-Dist: pillow>=12
|
|
25
23
|
Requires-Dist: pyarrow>=22
|
|
26
|
-
|
|
27
|
-
Requires-Dist:
|
|
28
|
-
Requires-Dist:
|
|
29
|
-
Requires-Dist:
|
|
24
|
+
Provides-Extra: viz
|
|
25
|
+
Requires-Dist: ipywidgets>=8.1.8; extra == "viz"
|
|
26
|
+
Requires-Dist: jupyterlab-widgets>=3.0.16; extra == "viz"
|
|
27
|
+
Requires-Dist: pyvista>=0.46.4; extra == "viz"
|
|
28
|
+
Requires-Dist: trame>=3.12; extra == "viz"
|
|
29
|
+
Requires-Dist: trame-vtk>=2.10; extra == "viz"
|
|
30
|
+
Requires-Dist: trame-vuetify>=3.1; extra == "viz"
|
|
31
|
+
Provides-Extra: vortex
|
|
32
|
+
Requires-Dist: vortex-data>=0.56; extra == "vortex"
|
|
30
33
|
Dynamic: license-file
|
|
31
34
|
|
|
32
|
-
<img
|
|
35
|
+
<img width="600" src="https://raw.githubusercontent.com/wayscience/ome-arrow/main/docs/src/_static/logo.png?raw=true">
|
|
33
36
|
|
|
34
37
|

|
|
35
38
|
[](https://github.com/wayscience/ome-arrow/actions/workflows/run-tests.yml?query=branch%3Amain)
|
|
36
39
|
[](https://github.com/astral-sh/ruff)
|
|
37
40
|
[](https://github.com/astral-sh/uv)
|
|
41
|
+
[](https://doi.org/10.5281/zenodo.17664969)
|
|
38
42
|
|
|
39
43
|
# Open, interoperable, and queryable microscopy images with OME Arrow
|
|
40
44
|
|
|
@@ -52,6 +56,13 @@ OME Arrow enables image data to be stored alongside metadata or derived data suc
|
|
|
52
56
|
Images in OME Arrow are composed of mutlilayer [structs](https://arrow.apache.org/docs/python/generated/pyarrow.struct.html) so they may be stored as values within tables.
|
|
53
57
|
This means you can store, query, and build relationships on data from the same location using any system which is compatible with Apache Arrow (including Parquet) through common data interfaces (such as SQL and DuckDB).
|
|
54
58
|
|
|
59
|
+
## Project focus
|
|
60
|
+
|
|
61
|
+
This package is intentionally dedicated to work at a per-image level and not large batch handling (though it may be used for those purposes by users or in other projects).
|
|
62
|
+
|
|
63
|
+
- For visualizing OME Arrow and OME Parquet data in Napari, please see the [`napari-ome-arrow`](https://github.com/WayScience/napari-ome-arrow) Napari plugin.
|
|
64
|
+
- For more comprehensive handling of many images and features in the context of the OME Parquet format please see the [`CytoDataFrame`](https://github.com/cytomining/CytoDataFrame) project (and relevant [example notebook](https://github.com/cytomining/CytoDataFrame/blob/main/docs/src/examples/cytodataframe_at_a_glance.ipynb)).
|
|
65
|
+
|
|
55
66
|
## Installation
|
|
56
67
|
|
|
57
68
|
Install OME Arrow from PyPI or from source:
|
|
@@ -89,12 +100,15 @@ oa_image.info()
|
|
|
89
100
|
oa_image.view(how="matplotlib")
|
|
90
101
|
|
|
91
102
|
# Display the image with pyvista
|
|
92
|
-
# (great for ZYX 3D images).
|
|
103
|
+
# (great for ZYX 3D images; install extras: `pip install 'ome-arrow[viz]'`).
|
|
93
104
|
oa_image.view(how="pyvista")
|
|
94
105
|
|
|
95
106
|
# Export to OME-Parquet.
|
|
96
107
|
# We can also export OME-TIFF, OME-Zarr or NumPy arrays.
|
|
97
108
|
oa_image.export(how="ome-parquet", out="your_image.ome.parquet")
|
|
109
|
+
|
|
110
|
+
# Export to Vortex (install extras: `pip install 'ome-arrow[vortex]'`).
|
|
111
|
+
oa_image.export(how="vortex", out="your_image.vortex")
|
|
98
112
|
```
|
|
99
113
|
|
|
100
114
|
## Contributing, Development, and Testing
|
|
@@ -107,5 +121,5 @@ OME Arrow is used or inspired by the following projects, check them out!
|
|
|
107
121
|
|
|
108
122
|
- [`napari-ome-arrow`](https://github.com/WayScience/napari-ome-arrow): enables you to view OME Arrow and related images.
|
|
109
123
|
- [`nViz`](https://github.com/WayScience/nViz): focuses on ingesting and visualizing various 3D image data.
|
|
110
|
-
- [`CytoDataFrame`](https://github.com/cytomining/CytoDataFrame): provides a DataFrame-like experience for viewing feature and microscopy image data within Jupyter notebook interfaces.
|
|
124
|
+
- [`CytoDataFrame`](https://github.com/cytomining/CytoDataFrame): provides a DataFrame-like experience for viewing feature and microscopy image data within Jupyter notebook interfaces and creating OME Parquet files.
|
|
111
125
|
- [`coSMicQC`](https://github.com/cytomining/coSMicQC): performs quality control on microscopy feature datasets, visualized using CytoDataFrames.
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
<img
|
|
1
|
+
<img width="600" src="https://raw.githubusercontent.com/wayscience/ome-arrow/main/docs/src/_static/logo.png?raw=true">
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|
[](https://github.com/wayscience/ome-arrow/actions/workflows/run-tests.yml?query=branch%3Amain)
|
|
5
5
|
[](https://github.com/astral-sh/ruff)
|
|
6
6
|
[](https://github.com/astral-sh/uv)
|
|
7
|
+
[](https://doi.org/10.5281/zenodo.17664969)
|
|
7
8
|
|
|
8
9
|
# Open, interoperable, and queryable microscopy images with OME Arrow
|
|
9
10
|
|
|
@@ -21,6 +22,13 @@ OME Arrow enables image data to be stored alongside metadata or derived data suc
|
|
|
21
22
|
Images in OME Arrow are composed of mutlilayer [structs](https://arrow.apache.org/docs/python/generated/pyarrow.struct.html) so they may be stored as values within tables.
|
|
22
23
|
This means you can store, query, and build relationships on data from the same location using any system which is compatible with Apache Arrow (including Parquet) through common data interfaces (such as SQL and DuckDB).
|
|
23
24
|
|
|
25
|
+
## Project focus
|
|
26
|
+
|
|
27
|
+
This package is intentionally dedicated to work at a per-image level and not large batch handling (though it may be used for those purposes by users or in other projects).
|
|
28
|
+
|
|
29
|
+
- For visualizing OME Arrow and OME Parquet data in Napari, please see the [`napari-ome-arrow`](https://github.com/WayScience/napari-ome-arrow) Napari plugin.
|
|
30
|
+
- For more comprehensive handling of many images and features in the context of the OME Parquet format please see the [`CytoDataFrame`](https://github.com/cytomining/CytoDataFrame) project (and relevant [example notebook](https://github.com/cytomining/CytoDataFrame/blob/main/docs/src/examples/cytodataframe_at_a_glance.ipynb)).
|
|
31
|
+
|
|
24
32
|
## Installation
|
|
25
33
|
|
|
26
34
|
Install OME Arrow from PyPI or from source:
|
|
@@ -58,12 +66,15 @@ oa_image.info()
|
|
|
58
66
|
oa_image.view(how="matplotlib")
|
|
59
67
|
|
|
60
68
|
# Display the image with pyvista
|
|
61
|
-
# (great for ZYX 3D images).
|
|
69
|
+
# (great for ZYX 3D images; install extras: `pip install 'ome-arrow[viz]'`).
|
|
62
70
|
oa_image.view(how="pyvista")
|
|
63
71
|
|
|
64
72
|
# Export to OME-Parquet.
|
|
65
73
|
# We can also export OME-TIFF, OME-Zarr or NumPy arrays.
|
|
66
74
|
oa_image.export(how="ome-parquet", out="your_image.ome.parquet")
|
|
75
|
+
|
|
76
|
+
# Export to Vortex (install extras: `pip install 'ome-arrow[vortex]'`).
|
|
77
|
+
oa_image.export(how="vortex", out="your_image.vortex")
|
|
67
78
|
```
|
|
68
79
|
|
|
69
80
|
## Contributing, Development, and Testing
|
|
@@ -76,5 +87,5 @@ OME Arrow is used or inspired by the following projects, check them out!
|
|
|
76
87
|
|
|
77
88
|
- [`napari-ome-arrow`](https://github.com/WayScience/napari-ome-arrow): enables you to view OME Arrow and related images.
|
|
78
89
|
- [`nViz`](https://github.com/WayScience/nViz): focuses on ingesting and visualizing various 3D image data.
|
|
79
|
-
- [`CytoDataFrame`](https://github.com/cytomining/CytoDataFrame): provides a DataFrame-like experience for viewing feature and microscopy image data within Jupyter notebook interfaces.
|
|
90
|
+
- [`CytoDataFrame`](https://github.com/cytomining/CytoDataFrame): provides a DataFrame-like experience for viewing feature and microscopy image data within Jupyter notebook interfaces and creating OME Parquet files.
|
|
80
91
|
- [`coSMicQC`](https://github.com/cytomining/coSMicQC): performs quality control on microscopy feature datasets, visualized using CytoDataFrames.
|