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
Copy file name to clipboardExpand all lines: src/spatialdata_io/__main__.py
+15Lines changed: 15 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -412,11 +412,24 @@ def visium_wrapper(
412
412
default=False,
413
413
help="If true, annotates the table by labels. [default: False]",
414
414
)
415
+
@click.option(
416
+
"--load-segmentations-only",
417
+
default=None,
418
+
help="If `True`, only the segmented cell boundaries and their associated counts will be loaded. All binned data will be skipped. [default: None, which will fall back to `False` with a deprecation warning]",
419
+
)
420
+
@click.option(
421
+
"--load-nucleus-segmentations",
422
+
type=bool,
423
+
default=False,
424
+
help="If `True` and nucleus segmentation files are present, load nucleus segmentation polygons and the corresponding nucleus-filtered count table. [default: False]",
0 commit comments