We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a5dfb92 + 99e460e commit d0be188Copy full SHA for d0be188
src/spatialdata_io/readers/xenium.py
@@ -286,7 +286,7 @@ def xenium(
286
else:
287
if morphology_focus:
288
morphology_focus_dir = path / XeniumKeys.MORPHOLOGY_FOCUS_DIR
289
- files = {f for f in os.listdir(morphology_focus_dir) if f.endswith(".ome.tif")}
+ files = {f for f in os.listdir(morphology_focus_dir) if f.endswith(".ome.tif") and not f.startswith("._")}
290
if len(files) not in [1, 4]:
291
raise ValueError(
292
"Expected 1 (no segmentation kit) or 4 (segmentation kit) files in the morphology focus directory, "
0 commit comments