Skip to content

Commit 8254734

Browse files
authored
Update notebooks api changes expand (#77)
* Updating notebooks with api changes
1 parent 905a594 commit 8254734

File tree

3 files changed

+230
-29
lines changed

3 files changed

+230
-29
lines changed

examples/OMETiff-convertor-demo.ipynb

Lines changed: 126 additions & 14 deletions
Large diffs are not rendered by default.

examples/OMEZarr-convertor-demo.ipynb

Lines changed: 103 additions & 14 deletions
Large diffs are not rendered by default.

tiledb/bioimg/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def get_schema(
9393
dim_tile = min(dim_size, max_tiles[dim_name])
9494
dim = tiledb.Dim(dim_name, (0, dim_size - 1), dim_tile, dtype=dim_dtype)
9595
dims.append(dim)
96-
attr = tiledb.Attr(name="intensity", dtype=attr_dtype, filters=[compressor])
96+
attr = tiledb.Attr(name=ATTR_NAME, dtype=attr_dtype, filters=[compressor])
9797
return tiledb.ArraySchema(domain=tiledb.Domain(*dims), attrs=[attr])
9898

9999

0 commit comments

Comments
 (0)