We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34a7180 commit 0afe048Copy full SHA for 0afe048
tiledb/bioimg/converters/base.py
@@ -284,7 +284,10 @@ def from_tiledb(
284
output_config = config
285
286
slide = TileDBOpenSlide(input_path, attr=attr, config=config)
287
- writer = cls._ImageWriterType(destination_uri, logger, **(writer_kwargs or {}))
+ ome = writer_kwargs.get("ome", None)
288
+ writer = cls._ImageWriterType(
289
+ destination_uri, logger, **({"ome": True if ome else None} or {})
290
+ )
291
292
with slide, writer:
293
writer.write_group_metadata(slide.properties)
0 commit comments