From d57f64ccfa08e78279754a96546ccf2892f07425 Mon Sep 17 00:00:00 2001 From: "Akshata N. Rudrapatna" <139808049+ANRudrapatna@users.noreply.github.com> Date: Thu, 13 Nov 2025 21:38:38 -0500 Subject: [PATCH] Update threshold.py --- maxatac/analyses/threshold.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maxatac/analyses/threshold.py b/maxatac/analyses/threshold.py index c60171e..8f75088 100644 --- a/maxatac/analyses/threshold.py +++ b/maxatac/analyses/threshold.py @@ -140,7 +140,7 @@ def run_thresholding(args): del PR_CURVE_DF['Random_Precision'] - PR_CURVE_DF.columns = ['Monotonic_Precision', 'Monotonic_Recall', 'Threshold', 'Monotonic_log2FC', 'Monotonic_F1'] + PR_CURVE_DF.columns = ['Monotonic_Avg_Precision', 'Monotonic_Avg_Recall', 'Standard_Thresh', 'Monotonic_Avg_log2FC', 'Avg_F1'] PR_CURVE_DF.to_csv(results_filename, sep="\t", header=True, index=False)