We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3f8b3fd + 56eb5d4 commit 077b747Copy full SHA for 077b747
README.md
@@ -8,19 +8,23 @@
8
9
---
10
11
-A lean and kind Open Microscopy Environment (OME) Next Generation File Format
12
-(NGFF) Zarr implementation.
+A lean and kind
+[Open Microscopy Environment (OME) Next Generation File Format (NGFF) Zarr](https://ngff.openmicroscopy.org)
13
+implementation.
14
15
## ✨ Features
16
17
- Minimal dependencies
18
- Work with arbitrary Zarr store types
19
- Lazy, parallel, and web ready -- no local filesystem required
20
- Process extremely large datasets
21
+- Conversion of most bioimaging file formats
22
- Multiple downscaling methods
-- Supports Python>=3.8
-- Implements version 0.4 of the
23
- [OME-Zarr NGFF specification](https://github.com/ome/ngff)
+- Supports Python>=3.9
24
+- Reads OME-Zarr v0.1 to v0.5 into simple Python data classes with Dask arrays
25
+- Optional OME-Zarr data model validation during reading
26
+- Writes OME-Zarr v0.4 to v0.5
27
+- Optional writing via [tensorstore](https://google.github.io/tensorstore/)
28
29
## Documentation
30
docs/index.md
@@ -16,10 +16,13 @@ A lean and kind
- Supports Python>=3.9
```{toctree}
:maxdepth: 2
test/test_ngff_validation.py
@@ -69,27 +69,3 @@ def test_validate_0_3():
69
def test_validate_0_3_no_version():
70
test_store = Path(__file__).parent / "data" / "input" / "v03" / "9528933.zarr"
71
from_ngff_zarr(test_store, validate=True)
72
-
73
74
-# def test_z_y_x_valid_ngff():
75
-# array = np.random.random((32, 32, 16))
76
-# image = to_spatial_image(array)
77
-# multiscale = to_multiscale(image, [2, 4])
78
79
-# check_valid_ngff(multiscale)
80
81
82
-# def test_z_y_x_c_valid_ngff():
83
-# array = np.random.random((32, 32, 16, 3))
84
85
86
87
88
89
90
-# def test_t_z_y_x_c_valid_ngff():
91
-# array = np.random.random((2, 32, 32, 16, 3))
92
93
94
95
0 commit comments