Skip to content

Commit 2241cd9

Browse files
committed
fix: generic paths
1 parent d29de78 commit 2241cd9

File tree

2 files changed

+5
-13
lines changed

2 files changed

+5
-13
lines changed

examples/load_tiff.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,8 @@
1414

1515
HERE = Path(__file__).parent
1616

17-
FILEPATH = Path(
18-
"/media/starfish/Storage/metacell/Isl1-GFP_E13-5_F129-3_CMN-R-L_02052024-GLC-stitched.ome.tiff"
19-
)
20-
OUTPUT_PATH = Path(
21-
"/media/starfish/Storage/metacell/converted/Isl1-GFP_E13-5_F129-3_CMN-R-L_02052024-GLC-stitched-raw"
22-
)
17+
FILEPATH = Path("...")
18+
OUTPUT_PATH = Path(".../output")
2319
OUTPUT_PATH.mkdir(exist_ok=True, parents=True)
2420
OVERWRITE = False
2521

examples/load_tiff_seg.py

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,8 @@
1919

2020
HERE = Path(__file__).parent
2121

22-
FILEPATH = Path(
23-
"..."
24-
)
25-
OUTPUT_PATH = Path(
26-
"..."
27-
)
22+
FILEPATH = Path("...")
23+
OUTPUT_PATH = Path("...")
2824
OUTPUT_PATH.mkdir(exist_ok=True, parents=True)
2925
OVERWRITE = False
3026

@@ -172,4 +168,4 @@ def process(args):
172168
OUTPUT_PATH, "mesh", 2, mesh_shape, fill_missing=True
173169
)
174170

175-
# %% For running all
171+
# %% For running all

0 commit comments

Comments
 (0)