From 2f5939a333a83053b146597c8bbc7c01c6da7715 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jarne=20Beli=C3=ABn?= <133022501+JarneBelien@users.noreply.github.com> Date: Fri, 26 Jul 2024 14:00:04 +0100 Subject: [PATCH] Update run_scib.py Added 'L.info("Done")' to the end of the script for consistency with other workflows. --- panpipes/python_scripts/run_scib.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/panpipes/python_scripts/run_scib.py b/panpipes/python_scripts/run_scib.py index 12a2e053..96f6c379 100644 --- a/panpipes/python_scripts/run_scib.py +++ b/panpipes/python_scripts/run_scib.py @@ -124,3 +124,5 @@ df.to_csv(os.path.join(args.fig_dir, modality, "scib_metrics_min_max_scaled.csv")) else: df.to_csv(os.path.join(args.fig_dir, modality, "scib_metrics.csv")) + +L.info("Done")