# HG changeset patch # User francesco_lapi # Date 1722009417 0 # Node ID 0efb675b8dc9e76429c7cfbba97de49246c9b0b8 # Parent 11645e643642f536641ec493321ae136d4921882 Uploaded diff -r 11645e643642 -r 0efb675b8dc9 marea_2/marea.py --- a/marea_2/marea.py Fri Jul 26 15:27:36 2024 +0000 +++ b/marea_2/marea.py Fri Jul 26 15:56:57 2024 +0000 @@ -732,10 +732,9 @@ reactDir = ReactionDirection.fromReactionId(reactId) # Net score is computed only for reversible reactions when user wants it on arrow tips or when RAS datasets aren't used if (ARGS.net or not ARGS.using_RAS) and reactDir is not ReactionDirection.Unknown: - print("sono entrato nell'if e non ho superato il try") try: position = ids.index(reactId[:-1] + ('B' if reactDir is ReactionDirection.Direct else 'F')) except ValueError: continue # we look for the complementary id, if not found we skip - print("sono entrato nell'if e ho superato il try") + nets1 = np.subtract(l1, dataset1Data[position]) nets2 = np.subtract(l2, dataset2Data[position])