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: sopa/io/explorer/converter.py
+6-4Lines changed: 6 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -60,6 +60,7 @@ def write(
60
60
ram_threshold_gb: int|None=4,
61
61
mode: str=None,
62
62
save_h5ad: bool=False,
63
+
run_name: str|None=None,
63
64
) ->None:
64
65
"""
65
66
Transform a SpatialData object into inputs for the Xenium Explorer.
@@ -99,6 +100,7 @@ def write(
99
100
ram_threshold_gb: Threshold (in gygabytes) from which image can be loaded in memory. If `None`, the image is never loaded in memory.
100
101
mode: string that indicated which files should be created. "-ib" means everything except images and boundaries, while "+tocm" means only transcripts/observations/counts/metadata (each letter corresponds to one explorer file). By default, keeps everything.
101
102
save_h5ad: Whether to save the adata as h5ad in the explorer directory (for convenience only, since h5ad is faster to open than the original .zarr table)
103
+
run_name: Name of the run displayed in the Xenium Explorer. If `None`, uses the `image_key`.
0 commit comments