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.
1 parent bdd761f commit d2143deCopy full SHA for d2143de
cellvit/inference/inference.py
@@ -678,7 +678,7 @@ def process_wsi(
678
if wsi_path.suffix == ".dcm":
679
wsi_outdir = self.outdir / wsi_path.parent.name
680
else:
681
- wsi_outdir = self.outdir / wsi_path.parent.stem
+ wsi_outdir = self.outdir / wsi_path.stem
682
wsi_outdir.mkdir(exist_ok=True, parents=True)
683
684
# load metadata
pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
5
[project]
6
name = "cellvit"
7
-version = "1.0.8"
+version = "1.0.9"
8
description = "CellViT Inference Pipeline for Whole Slide Images (WSI) in Memory"
9
authors = [
10
{ name = "Fabian Hörst", email = "[email protected]" }
0 commit comments