Skip to content

Commit d2143de

Browse files
committed
Fix naming issue
1 parent bdd761f commit d2143de

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cellvit/inference/inference.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -678,7 +678,7 @@ def process_wsi(
678678
if wsi_path.suffix == ".dcm":
679679
wsi_outdir = self.outdir / wsi_path.parent.name
680680
else:
681-
wsi_outdir = self.outdir / wsi_path.parent.stem
681+
wsi_outdir = self.outdir / wsi_path.stem
682682
wsi_outdir.mkdir(exist_ok=True, parents=True)
683683

684684
# load metadata

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "cellvit"
7-
version = "1.0.8"
7+
version = "1.0.9"
88
description = "CellViT Inference Pipeline for Whole Slide Images (WSI) in Memory"
99
authors = [
1010
{ name = "Fabian Hörst", email = "[email protected]" }

0 commit comments

Comments
 (0)