We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a20bbaf + 70e3c96 commit 433014eCopy full SHA for 433014e
src/spatialdata_io/readers/codex.py
@@ -85,10 +85,10 @@ def codex(
85
rgb=None,
86
)
87
}
88
- sdata = SpatialData(images=images, shapes={str(region): shapes}, table=table)
+ sdata = SpatialData(images=images, shapes={str(region): shapes}, tables={"table": table})
89
else:
90
logger.warning("Cannot find .tif file. Will build spatialdata with shapes and table only.")
91
- sdata = SpatialData(shapes={str(region): shapes}, table=table)
+ sdata = SpatialData(shapes={str(region): shapes}, tables={"table": table})
92
93
return _set_reader_metadata(sdata, "codex")
94
0 commit comments