zarr_utils
Module with custom wrappers of the Zarr API.
open_zarr_group_with_overwrite(path, *, overwrite, logger=None, **open_group_kwargs)
¶
Wrap zarr.open_group and add overwrite argument.
This wrapper sets mode="w" for overwrite=True and mode="w-" for
overwrite=False.
The expected behavior is
- if the group does not exist, create it (independently on
overwrite); - if the group already exists and
overwrite=True, replace the group with an empty one; - if the group already exists and
overwrite=False, fail.
From the zarr.open_group
docs:
mode="r"means read only (must exist);mode="r+"means read/write (must exist);mode="a"means read/write (create if doesn’t exist);mode="w"means create (overwrite if exists);mode="w-"means create (fail if exists).
| PARAMETER | DESCRIPTION |
|---|---|
path |
Store or path to directory in file system or name of zip file
(
TYPE:
|
overwrite |
Determines the
TYPE:
|
logger |
The logger to use (if unset, use |
open_group_kwargs |
Keyword arguments of
TYPE:
|
| RETURNS | DESCRIPTION |
|---|---|
Group
|
The zarr group. |
| RAISES | DESCRIPTION |
|---|---|
OverwriteNotAllowedError
|
If |
Source code in fractal_tasks_core/zarr_utils.py
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 | |