# HG changeset patch # User luca_milaz # Date 1730843124 0 # Node ID a9a490ae198d93113eba979c2d0502e6b81abb58 # Parent 507efdc9d2260ecb5bcc53bfccf15ae73dfa8a37 Uploaded diff -r 507efdc9d226 -r a9a490ae198d COBRAxy/marea.py --- 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')