ome-arrow 0.0.4__tar.gz → 0.0.6__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.4 → ome_arrow-0.0.6}/.github/dependabot.yml +8 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/.github/workflows/run-tests.yml +2 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/.pre-commit-config.yaml +4 -4
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/CITATION.cff +26 -0
- {ome_arrow-0.0.4/src/ome_arrow.egg-info → ome_arrow-0.0.6}/PKG-INFO +7 -2
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/README.md +4 -1
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/docs/src/examples/learning_to_fly_with_ome-arrow.ipynb +72 -14
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/docs/src/examples/learning_to_fly_with_ome-arrow.py +9 -1
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/pyproject.toml +15 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/src/ome_arrow/__init__.py +8 -1
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/src/ome_arrow/_version.py +3 -3
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/src/ome_arrow/core.py +72 -7
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/src/ome_arrow/export.py +302 -8
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/src/ome_arrow/ingest.py +542 -124
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/src/ome_arrow/meta.py +41 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/src/ome_arrow/transform.py +34 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/src/ome_arrow/view.py +20 -22
- {ome_arrow-0.0.4 → ome_arrow-0.0.6/src/ome_arrow.egg-info}/PKG-INFO +7 -2
- ome_arrow-0.0.6/src/ome_arrow.egg-info/SOURCES.txt +345 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/src/ome_arrow.egg-info/requires.txt +3 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/conftest.py +34 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/0/0/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/0/1/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/0/10/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/0/11/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/0/12/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/0/13/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/0/14/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/0/15/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/0/16/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/0/17/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/0/18/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/0/19/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/0/2/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/0/20/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/0/21/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/0/22/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/0/23/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/0/3/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/0/4/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/0/5/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/0/6/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/0/7/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/0/8/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/0/9/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/1/0/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/1/1/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/1/10/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/1/11/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/1/12/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/1/13/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/1/14/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/1/15/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/1/16/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/1/17/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/1/18/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/1/19/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/1/2/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/1/20/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/1/21/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/1/22/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/1/23/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/1/3/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/1/4/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/1/5/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/1/6/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/1/7/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/1/8/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/c/1/9/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/0/zarr.json +1 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/0/0/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/0/1/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/0/10/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/0/11/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/0/12/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/0/13/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/0/14/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/0/15/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/0/16/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/0/17/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/0/18/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/0/19/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/0/2/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/0/20/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/0/21/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/0/22/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/0/23/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/0/3/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/0/4/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/0/5/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/0/6/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/0/7/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/0/8/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/0/9/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/1/0/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/1/1/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/1/10/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/1/11/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/1/12/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/1/13/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/1/14/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/1/15/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/1/16/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/1/17/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/1/18/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/1/19/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/1/2/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/1/20/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/1/21/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/1/22/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/1/23/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/1/3/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/1/4/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/1/5/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/1/6/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/1/7/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/1/8/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/c/1/9/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/1/zarr.json +1 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/0/0/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/0/1/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/0/10/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/0/11/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/0/12/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/0/13/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/0/14/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/0/15/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/0/16/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/0/17/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/0/18/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/0/19/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/0/2/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/0/20/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/0/21/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/0/22/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/0/23/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/0/3/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/0/4/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/0/5/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/0/6/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/0/7/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/0/8/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/0/9/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/1/0/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/1/1/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/1/10/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/1/11/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/1/12/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/1/13/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/1/14/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/1/15/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/1/16/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/1/17/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/1/18/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/1/19/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/1/2/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/1/20/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/1/21/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/1/22/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/1/23/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/1/3/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/1/4/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/1/5/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/1/6/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/1/7/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/1/8/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/c/1/9/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/2/zarr.json +1 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/6001240_labels.zarr/ro-crate-metadata.json +39 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/10/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/11/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/12/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/13/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/14/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/15/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/16/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/17/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/18/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/19/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/2/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/20/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/21/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/22/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/23/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/3/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/4/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/5/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/6/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/7/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/8/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/c/0/9/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/0/zarr.json +1 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/10/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/11/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/12/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/13/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/14/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/15/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/16/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/17/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/18/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/19/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/2/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/20/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/21/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/22/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/23/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/3/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/4/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/5/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/6/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/7/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/8/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/c/0/9/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/1/zarr.json +1 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/10/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/11/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/12/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/13/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/14/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/15/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/16/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/17/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/18/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/19/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/2/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/20/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/21/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/22/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/23/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/3/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/4/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/5/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/6/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/7/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/8/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/c/0/9/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/2/zarr.json +1 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/10/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/11/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/12/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/13/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/14/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/15/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/16/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/17/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/18/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/19/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/2/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/20/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/21/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/22/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/23/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/3/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/4/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/5/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/6/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/7/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/8/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/c/0/9/0/0 +0 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/3/zarr.json +1 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/0/zarr.json +1 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/labels/zarr.json +1 -0
- ome_arrow-0.0.6/tests/data/idr0062A/6001240_labels.zarr/zarr.json +1 -0
- ome_arrow-0.0.6/tests/test_chunks.py +83 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/test_core.py +45 -0
- ome_arrow-0.0.6/tests/test_scaling.py +100 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/uv.lock +740 -524
- ome_arrow-0.0.4/src/ome_arrow.egg-info/SOURCES.txt +0 -100
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/.github/ISSUE_TEMPLATE/issue.yml +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/.github/PULL_REQUEST_TEMPLATE.md +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/.github/release-drafter.yml +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/.github/workflows/draft-release.yml +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/.github/workflows/publish-docs.yml +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/.github/workflows/publish-pypi.yml +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/.gitignore +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/.python-version +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/CODE_OF_CONDUCT.md +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/CONTRIBUTING.md +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/LICENSE +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/docs/src/_static/logo.png +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/docs/src/_static/references_to_files.png +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/docs/src/_static/various_ome_arrow_schema.png +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/docs/src/conf.py +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/docs/src/index.md +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/docs/src/python-api.md +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/setup.cfg +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/src/ome_arrow/utils.py +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/src/ome_arrow.egg-info/dependency_links.txt +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/src/ome_arrow.egg-info/top_level.txt +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/JUMP-BR00117006/BR00117006.ome.parquet +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/examplehuman/AS_09125_050116030001_D03f00d0.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/examplehuman/AS_09125_050116030001_D03f00d1.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/examplehuman/AS_09125_050116030001_D03f00d2.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS000.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS001.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS002.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS003.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS004.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS005.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS006.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS007.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS008.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS009.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS010.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS011.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS012.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS013.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS014.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS015.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS016.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS017.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS018.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS019.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS020.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C111_ZS021.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS000.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS001.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS002.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS003.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS004.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS005.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS006.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS007.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS008.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS009.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS010.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS011.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS012.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS013.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS014.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS015.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS016.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS017.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS018.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS019.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS020.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/nviz-artificial-4d-dataset/E99_C222_ZS021.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/ome-artificial-5d-datasets/4D-series.ome.tiff +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/ome-artificial-5d-datasets/multi-channel-4D-series.ome.tiff +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/ome-artificial-5d-datasets/multi-channel-time-series.ome.tiff +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/ome-artificial-5d-datasets/multi-channel-z-series.ome.tiff +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/ome-artificial-5d-datasets/multi-channel.ome.tiff +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/ome-artificial-5d-datasets/single-channel.ome.tiff +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/ome-artificial-5d-datasets/time-series.ome.tif +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/data/ome-artificial-5d-datasets/z-series.ome.tiff +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/test_utils.py +0 -0
- {ome_arrow-0.0.4 → ome_arrow-0.0.6}/tests/test_view.py +0 -0
|
@@ -14,6 +14,10 @@ updates:
|
|
|
14
14
|
schedule:
|
|
15
15
|
# Check for updates to GitHub Actions every week
|
|
16
16
|
interval: "weekly"
|
|
17
|
+
groups:
|
|
18
|
+
github-actions:
|
|
19
|
+
patterns:
|
|
20
|
+
- "*"
|
|
17
21
|
|
|
18
22
|
# Perform checks and updates for python uv environment.
|
|
19
23
|
# This depends on changes to dependabot via:
|
|
@@ -25,3 +29,7 @@ updates:
|
|
|
25
29
|
schedule:
|
|
26
30
|
# Check for updates to uv environment files every week
|
|
27
31
|
interval: "weekly"
|
|
32
|
+
groups:
|
|
33
|
+
uv:
|
|
34
|
+
patterns:
|
|
35
|
+
- "*"
|
|
@@ -42,5 +42,7 @@ jobs:
|
|
|
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
|
|
@@ -9,7 +9,7 @@ repos:
|
|
|
9
9
|
- id: check-yaml
|
|
10
10
|
- id: detect-private-key
|
|
11
11
|
- repo: https://github.com/tox-dev/pyproject-fmt
|
|
12
|
-
rev: "v2.
|
|
12
|
+
rev: "v2.12.1"
|
|
13
13
|
hooks:
|
|
14
14
|
- id: pyproject-fmt
|
|
15
15
|
- repo: https://github.com/citation-file-format/cffconvert
|
|
@@ -34,17 +34,17 @@ repos:
|
|
|
34
34
|
additional_dependencies:
|
|
35
35
|
- mdformat-gfm
|
|
36
36
|
- repo: https://github.com/adrienverge/yamllint
|
|
37
|
-
rev: v1.
|
|
37
|
+
rev: v1.38.0
|
|
38
38
|
hooks:
|
|
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.
|
|
42
|
+
rev: "v0.15.0"
|
|
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
|
|
@@ -129,3 +129,29 @@ references:
|
|
|
129
129
|
JUMP (cpg0000-jump-pilot) was used to help demonstrate CytoDataFrame performance
|
|
130
130
|
with large data. See here for more information:
|
|
131
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.6
|
|
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
|
|
@@ -28,9 +28,11 @@ Requires-Dist: pyvista>=0.46.4; extra == "viz"
|
|
|
28
28
|
Requires-Dist: trame>=3.12; extra == "viz"
|
|
29
29
|
Requires-Dist: trame-vtk>=2.10; extra == "viz"
|
|
30
30
|
Requires-Dist: trame-vuetify>=3.1; extra == "viz"
|
|
31
|
+
Provides-Extra: vortex
|
|
32
|
+
Requires-Dist: vortex-data>=0.56; extra == "vortex"
|
|
31
33
|
Dynamic: license-file
|
|
32
34
|
|
|
33
|
-
<img
|
|
35
|
+
<img width="600" src="https://raw.githubusercontent.com/wayscience/ome-arrow/main/docs/src/_static/logo.png?raw=true">
|
|
34
36
|
|
|
35
37
|

|
|
36
38
|
[](https://github.com/wayscience/ome-arrow/actions/workflows/run-tests.yml?query=branch%3Amain)
|
|
@@ -104,6 +106,9 @@ oa_image.view(how="pyvista")
|
|
|
104
106
|
# Export to OME-Parquet.
|
|
105
107
|
# We can also export OME-TIFF, OME-Zarr or NumPy arrays.
|
|
106
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")
|
|
107
112
|
```
|
|
108
113
|
|
|
109
114
|
## Contributing, Development, and Testing
|
|
@@ -1,4 +1,4 @@
|
|
|
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)
|
|
@@ -72,6 +72,9 @@ oa_image.view(how="pyvista")
|
|
|
72
72
|
# Export to OME-Parquet.
|
|
73
73
|
# We can also export OME-TIFF, OME-Zarr or NumPy arrays.
|
|
74
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")
|
|
75
78
|
```
|
|
76
79
|
|
|
77
80
|
## Contributing, Development, and Testing
|