# HG changeset patch # User francesco_lapi # Date 1722006465 0 # Node ID 13f8d4a8b0159d31ac65ff7704519f83627277bb # Parent cb70f4d69b45c855f2de468b22f597ae6d3189a6 Uploaded diff -r cb70f4d69b45 -r 13f8d4a8b015 marea_2/marea.py --- a/marea_2/marea.py Fri Jul 26 15:06:23 2024 +0000 +++ b/marea_2/marea.py Fri Jul 26 15:07:45 2024 +0000 @@ -732,9 +732,10 @@ 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]) @@ -881,7 +882,6 @@ sys.exit : if a user-provided custom map is in the wrong format (ET.XMLSyntaxError, ET.XMLSchemaParseError) """ - print('PROVA') global ARGS ARGS = process_args()