Skip to content

Commit 077b747

Browse files
authored
Merge pull request #113 from thewtex/doc-updates
doc updates
2 parents 3f8b3fd + 56eb5d4 commit 077b747

File tree

3 files changed

+14
-31
lines changed

3 files changed

+14
-31
lines changed

README.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,23 @@
88

99
---
1010

11-
A lean and kind Open Microscopy Environment (OME) Next Generation File Format
12-
(NGFF) Zarr implementation.
11+
A lean and kind
12+
[Open Microscopy Environment (OME) Next Generation File Format (NGFF) Zarr](https://ngff.openmicroscopy.org)
13+
implementation.
1314

1415
## ✨ Features
1516

1617
- Minimal dependencies
1718
- Work with arbitrary Zarr store types
1819
- Lazy, parallel, and web ready -- no local filesystem required
1920
- Process extremely large datasets
21+
- Conversion of most bioimaging file formats
2022
- Multiple downscaling methods
21-
- Supports Python>=3.8
22-
- Implements version 0.4 of the
23-
[OME-Zarr NGFF specification](https://github.com/ome/ngff)
23+
- 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/)
2428

2529
## Documentation
2630

docs/index.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,13 @@ A lean and kind
1616
- Work with arbitrary Zarr store types
1717
- Lazy, parallel, and web ready -- no local filesystem required
1818
- Process extremely large datasets
19+
- Conversion of most bioimaging file formats
1920
- Multiple downscaling methods
2021
- Supports Python>=3.9
21-
- Implements version 0.4 of the
22-
[OME-Zarr NGFF specification](https://github.com/ome/ngff)
22+
- Reads OME-Zarr v0.1 to v0.5 into simple Python data classes with Dask arrays
23+
- Optional OME-Zarr data model validation during reading
24+
- Writes OME-Zarr v0.4 to v0.5
25+
- Optional writing via [tensorstore](https://google.github.io/tensorstore/)
2326

2427
```{toctree}
2528
:maxdepth: 2

test/test_ngff_validation.py

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -69,27 +69,3 @@ def test_validate_0_3():
6969
def test_validate_0_3_no_version():
7070
test_store = Path(__file__).parent / "data" / "input" / "v03" / "9528933.zarr"
7171
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-
# image = to_spatial_image(array)
85-
# multiscale = to_multiscale(image, [2, 4])
86-
87-
# check_valid_ngff(multiscale)
88-
89-
90-
# def test_t_z_y_x_c_valid_ngff():
91-
# array = np.random.random((2, 32, 32, 16, 3))
92-
# image = to_spatial_image(array)
93-
# multiscale = to_multiscale(image, [2, 4])
94-
95-
# check_valid_ngff(multiscale)

0 commit comments

Comments
 (0)