# HG changeset patch # User francesco_lapi # Date 1722524106 0 # Node ID 27d2d35ddbe8120d738b0b1f662728b0ef217188 # Parent 60b0be1f9c4936f320160e63b16c5cb0cfebf640 Uploaded diff -r 60b0be1f9c49 -r 27d2d35ddbe8 marea_2/flux_to_map.py --- a/marea_2/flux_to_map.py Thu Aug 01 14:35:47 2024 +0000 +++ b/marea_2/flux_to_map.py Thu Aug 01 14:55:06 2024 +0000 @@ -429,7 +429,10 @@ # Now we style the arrow head(s): idOpt1, idOpt2 = getArrowHeadElementId(reactionId) self.applyTo(idOpt1, metabMap, self.toStyleStr(downSizedForTips = True)) + print(self.toStyleStr(downSizedForTips = True)) if idOpt2: self.applyTo(idOpt2, metabMap, self.toStyleStr(downSizedForTips = True)) + + def getMapReactionId(self, reactionId :str, mindReactionDir :bool) -> str: """ @@ -892,12 +895,10 @@ # create output files: TODO: this is the same comparison happening in "maps", find a better way to organize this if ARGS.comparison == "manyvsmany": for i, j in it.combinations(class_pat.keys(), 2): createOutputMaps(i, j, core_map) - print('Execution succeded') return if ARGS.comparison == "onevsrest": for single_cluster in class_pat.keys(): createOutputMaps(single_cluster, "rest", core_map) - print('Execution succeded') return for otherDataset in class_pat.keys():