From f4592140405c81409851ea848c6afde8ade7b254 Mon Sep 17 00:00:00 2001 From: "janni.roebbecke" Date: Wed, 3 Jul 2024 19:43:16 +0200 Subject: [PATCH] add missing value to output_keys of mann whitney test --- protzilla/methods/data_analysis.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/protzilla/methods/data_analysis.py b/protzilla/methods/data_analysis.py index 7ad87de3..53311107 100644 --- a/protzilla/methods/data_analysis.py +++ b/protzilla/methods/data_analysis.py @@ -173,6 +173,7 @@ class DifferentialExpressionMannWhitneyOnIntensity(DataAnalysisStep): "differentially_expressed_proteins_df", "significant_proteins_df", "corrected_p_values_df", + "u_statistic_df", "log2_fold_change_df", "corrected_alpha", ] @@ -208,6 +209,7 @@ class DifferentialExpressionMannWhitneyOnPTM(DataAnalysisStep): "differentially_expressed_ptm_df", "significant_ptm_df", "corrected_p_values_df", + "u_statistic_df", "log2_fold_change_df", "corrected_alpha", ]