diff COBRAxy/marea_cluster.py @ 444:06564187fba3 draft

Uploaded
author francesco_lapi
date Thu, 11 Sep 2025 09:03:10 +0000
parents 8cd0c70b0084
children
line wrap: on
line diff
--- a/COBRAxy/marea_cluster.py	Wed Sep 10 16:50:16 2025 +0000
+++ b/COBRAxy/marea_cluster.py	Thu Sep 11 09:03:10 2025 +0000
@@ -507,7 +507,7 @@
 
     if not os.path.exists(args.output_path):
         os.makedirs(args.output_path)
-    
+
     #Data read
     
     X = read_dataset(args.input)
@@ -520,7 +520,7 @@
         if any(val is None or np.isnan(val) for val in X[i]):
             X = X.drop(columns=[i])
             
-    if args.scaling == True:
+    if args.scaling == "true":
         list_to_remove = []
         toll_std=1e-8
         for i in X.columns: