You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When attempting to render_shapes with a color key or a table key that does not exist, spatialdata-plot just plots everything grey. I would expect it to raise a KeyError instead.
Example
# example dataset from tutorialsdata=sd.read_zarr("visium_brain.zarr/")
(
sdata.pl.render_images(elements="ST8059050_hires_image")
.pl.render_shapes(elements="ST8059050", color="doesntexist")
.pl.show()
)
Also, somewhat related, the function silently accepts any keyword argument.
For instance, if I mistype table instead of table_name it just uses the default table instead of failing, which can be confusing.
EDIT: again, somewhat related, I'd also expect a failure with corresponding error message that tells me if a region could not be found in the table.
The text was updated successfully, but these errors were encountered:
When attempting to
render_shapes
with a color key or a table key that does not exist, spatialdata-plot just plots everything grey. I would expect it to raise a KeyError instead.Example
Also, somewhat related, the function silently accepts any keyword argument.
For instance, if I mistype
table
instead oftable_name
it just uses the default table instead of failing, which can be confusing.EDIT: again, somewhat related, I'd also expect a failure with corresponding error message that tells me if a region could not be found in the
table
.The text was updated successfully, but these errors were encountered: