From f645ab2a09ee1188a97ff2c301d536f1939b9cad Mon Sep 17 00:00:00 2001 From: Henry Webel Date: Sat, 19 Jul 2025 14:16:17 +0200 Subject: [PATCH 1/2] :bug: fix logo path for local execution --- gui/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/app.py b/gui/app.py index e2ce353..1caae9f 100644 --- a/gui/app.py +++ b/gui/app.py @@ -99,7 +99,7 @@ / "Basic_example_vuegen_demo_notebook" ).resolve() logo_path = ( - app_path.parent.parent / "docs" / "images" / "vuegen_logo.png" + app_path.parent.parent / "docs" / "images" / "logo" / "vuegen_logo.png" ) # 1000x852 pixels else: path_to_example_data = "docs/example_data/Basic_example_vuegen_demo_notebook" From 186c371ad70416cfdd779700df12ae2a1a5dac4a Mon Sep 17 00:00:00 2001 From: Henry Webel Date: Mon, 21 Jul 2025 11:08:55 +0200 Subject: [PATCH 2/2] :memo::bug: Add hint to Python version GUI works with 3.12.10 for me but a dlib is missing if 3.12.11 is used. --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 1d29d66..ebff756 100644 --- a/README.md +++ b/README.md @@ -270,6 +270,10 @@ You can create a new conda environment with Python 3.12 and the `jupyter` and `v conda create -n vuegen_gui -c conda-forge -c bioconda python=3.12 jupyter vuegen ``` +The exact Python version used for the release is specified on the +[releases](https://github.com/Multiomics-Analytics-Group/vuegen/releases/latest) page +as we observed that sometimes the exact Python version is required to run the GUI. + > [!WARNING] > If you have errors with the `vuegen` package, you can install it separately using pip, as explained in the installation section. >