changeset 247:6c3e7c338b93 draft

Uploaded
author luca_milaz
date Sun, 04 Aug 2024 12:56:43 +0000
parents caf79d752eb4
children 419c6bfad590
files marea_2/flux_to_map.py
diffstat 1 files changed, 8 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/marea_2/flux_to_map.py	Sun Aug 04 12:34:44 2024 +0000
+++ b/marea_2/flux_to_map.py	Sun Aug 04 12:56:43 2024 +0000
@@ -814,9 +814,16 @@
     return { id : list(map(utils.Float("Dataset values, not an argument"), values)) for id, values in dataset.items() }, IDs
 
 def computeEnrichmentMedoids(metabMap :ET.ElementTree, class_pat :Dict[str, List[List[float]]], ids :List[str]) -> None:
+
     utils.logWarning(
-        print(class_pat),
+        str(len(class_pat['1'])),
         ARGS.out_log)
+    
+    pass
+    #for key, value in class_pat.items():
+
+    #max_flux = max(class_pat.values(), key=abs)
+
         
 
 ############################ MAIN #############################################