We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c9a2a1 commit 88360adCopy full SHA for 88360ad
2 files changed
pyproject.toml
@@ -19,7 +19,7 @@ urls.Documentation = "https://todo.com" # TODO
19
urls.Source = "https://github.com/url/to/repo.git"
20
urls.Home-page = "https://github.com/url/to/repo.git"
21
dependencies = [
22
- "anndata>=0.12.2",
+ "anndata>=0.12.5",
23
"dask",
24
"scanpy",
25
"zarr>3",
src/fancypackage/io/_zarr.py
@@ -6,6 +6,9 @@
6
import anndata as ad
7
from anndata import AnnData
8
9
+ad.settings.zarr_write_format = 3
10
+ad.settings.auto_shard_zarr_v3 = True
11
+
12
13
def write_zarr(adata: AnnData, path: Path) -> None:
14
"""Write AnnData to hierarchical Zarr array zip store.
0 commit comments