From 899f36bd1bff1b42b0ae6ef60cfa21510ee8782b Mon Sep 17 00:00:00 2001 From: Qing <44231502+byemaxx@users.noreply.github.com> Date: Mon, 23 Sep 2024 18:07:45 -0400 Subject: [PATCH] - Fix: Fixed the bug of finish the data preprossing, the page was not changed to the next page. --- Docs/ChangeLog.md | 5 +++++ metax/gui/main_gui.py | 7 ++++++- metax/utils/version.py | 2 +- pyproject.toml | 2 +- 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/Docs/ChangeLog.md b/Docs/ChangeLog.md index 1739fa1..ebc8132 100644 --- a/Docs/ChangeLog.md +++ b/Docs/ChangeLog.md @@ -1,3 +1,8 @@ +# Version: 1.114.5 +## Date: 2024-09-23 +### Changes: +- Fix: Fixed the bug of finish the data preprossing, the page was not changed to the next page. + # Version: 1.114.4 ## Date: 2024-09-23 ### Changes: diff --git a/metax/gui/main_gui.py b/metax/gui/main_gui.py index a452c65..06facba 100644 --- a/metax/gui/main_gui.py +++ b/metax/gui/main_gui.py @@ -1947,7 +1947,12 @@ def run_after_set_multi_tables(self): print(f'\n----Multi Table Result----\n{msg_for_print}\n---------------------------\n') self.logger.write_log(msg_for_print.replace('\n', '')) QMessageBox.information(self.MainWindow, 'Result', msg) - + print("\n---------------------------------- Set Multi Table End ----------------------------------\n") + # go to basic analysis tab and the first tab + self.stackedWidget.setCurrentIndex(0) # go to page_analyzer + self.tabWidget_TaxaFuncAnalyzer.setCurrentIndex(3) + self.tabWidget_4.setCurrentIndex(0) + self.pushButton_set_multi_table.setEnabled(True) ## Database builder by own Table def show_toolButton_db_own_anno_help(self): diff --git a/metax/utils/version.py b/metax/utils/version.py index 6812e9a..401505d 100644 --- a/metax/utils/version.py +++ b/metax/utils/version.py @@ -1,2 +1,2 @@ -__version__ = '1.114.4' +__version__ = '1.114.5' API_version = '2' \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 0cf48bc..2d08cf1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "MetaXTools" -version = "1.114.4" +version = "1.114.5" description = "MetaXTools is a novel tool for linking peptide sequences with taxonomic and functional information in Metaproteomics." readme = "README_PyPi.md" license = { text = "NorthOmics" }