changeset 176:13f8d4a8b015 draft

Uploaded
author francesco_lapi
date Fri, 26 Jul 2024 15:07:45 +0000
parents cb70f4d69b45
children 093ab75ed8b5
files marea_2/marea.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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()