changeset 144:a9a490ae198d draft

Uploaded
author luca_milaz
date Tue, 05 Nov 2024 21:45:24 +0000
parents 507efdc9d226
children 0f5564819296
files COBRAxy/marea.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/COBRAxy/marea.py	Tue Nov 05 21:42:17 2024 +0000
+++ b/COBRAxy/marea.py	Tue Nov 05 21:45:24 2024 +0000
@@ -890,7 +890,7 @@
         enrichment_results = computeEnrichment(core_map, class_pat, ids)
         for i, j, comparisonDict, max_z_score in enrichment_results:
             map_copy = copy.deepcopy(core_map)
-            temp_thingsInCommon(comparisonDict, map_copy, max_z_score, i, j, fromRAS=True)
+            temp_thingsInCommon(comparisonDict, map_copy, max_z_score, i, j, ras_enrichment=True)
             createOutputMaps(i, j, map_copy)
     
     if ARGS.using_RPS:
@@ -898,7 +898,7 @@
         enrichment_results = computeEnrichment(core_map, class_pat, ids, fromRAS=False)
         for i, j, comparisonDict, max_z_score in enrichment_results:
             map_copy = copy.deepcopy(core_map)
-            temp_thingsInCommon(comparisonDict, map_copy, max_z_score, i, j, fromRAS=False)
+            temp_thingsInCommon(comparisonDict, map_copy, max_z_score, i, j, ras_enrichment=False)
             createOutputMaps(i, j, map_copy)
 
     print('Execution succeeded')