From c1f5457ffb513687a355c5b91b9ff8354b3d54a4 Mon Sep 17 00:00:00 2001 From: Qing <44231502+byemaxx@users.noreply.github.com> Date: Tue, 3 Dec 2024 11:49:39 -0500 Subject: [PATCH] modified: metax/gui/main_gui.py --- metax/gui/main_gui.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/metax/gui/main_gui.py b/metax/gui/main_gui.py index 27af24d..13067c2 100644 --- a/metax/gui/main_gui.py +++ b/metax/gui/main_gui.py @@ -2057,7 +2057,7 @@ 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', '')) + self.logger.write_log(msg_for_print.strip()) QMessageBox.information(self.MainWindow, 'Result', msg) print("\n---------------------------------- Set Multi Table End ----------------------------------\n") # go to basic analysis tab and the first tab @@ -2803,7 +2803,6 @@ def set_multi_table(self, restore_taxafunc=False, saved_obj=None): try: print("\n---------------------------------- Set Multi Table ----------------------------------\n") - self.logger.write_log(f'set_multi_table: function: {function}, taxa_level: {taxa_level}, func_threshold: {func_threshold}, outlier_detect_method: {outlier_detect_method}, outlier_handle_method: {outlier_handle_method}, outlier_handle_by_group: {outlier_handle_by_group}, normalize_method: {normalize_method}, transform_method: {transform_method}, batch_group: {batch_meta}, processing_order: {processing_order}') self.tfa.set_func(function) # update group and sample in comboBox # self.update_group_and_sample_combobox() # No longer need due to self.change_event_meta_name_combobox_plot_part() @@ -2824,6 +2823,9 @@ def set_multi_table(self, restore_taxafunc=False, saved_obj=None): 'split_func': split_func, 'split_func_params': split_func_params, 'taxa_and_func_only_from_otf': taxa_and_func_only_from_otf, 'quant_method': quant_method} + + self.logger.write_log(f"set_multi_table_params: {set_multi_table_params} \ + \n\nOutlier_params: {outlier_params} \n\nData_preprocess_params: {data_preprocess_params}", 'i') def callback_after_set_multi_tables(result, success): if success: