File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -686,7 +686,7 @@ def _gen_rr_reactions(
686686 logger .debug (" Generating data..." )
687687 dep_files = [os_path .join (input_dir , f ) for f in rrCache .__cache [attribute ]['deps' ]['file_deps' ]]
688688 rr_reactions = rrCache ._m_rr_reactions (
689- os_path . join ( input_dir , dep_files [0 ]) ,
689+ dep_files [0 ],
690690 logger = logger
691691 # deprecatedCID_cid,
692692 # deprecatedRID_rid
@@ -758,9 +758,7 @@ def _gen_template_reactions(
758758 # else:
759759 logger .debug (" Generating data..." )
760760 dep_files = [os_path .join (input_dir , f ) for f in rrCache .__cache [attribute ]['deps' ]['file_deps' ]]
761- template_reactions = rrCache ._m_template_reactions (
762- os_path .join (input_dir , dep_files [0 ]),
763- )
761+ template_reactions = rrCache ._m_template_reactions (dep_files [0 ])
764762 if deprecatedRID_rid :
765763 # Handle deprecated reaction IDs
766764 for depRID , newRID in deprecatedRID_rid ['attr' ].items ():
@@ -1296,7 +1294,7 @@ def _m_rr_reactions(
12961294 rr_reactions = {}
12971295
12981296 if not os_path .exists (rules_rall_path ):
1299- logger .error ('Could not read the rules_rall file (' + str (rules_rall_path )+ ')' )
1297+ logger .error ('Could not read the rules file (' + str (rules_rall_path )+ ')' )
13001298 return None
13011299
13021300 for row in csv_DictReader (gzip_open (rules_rall_path , 'rt' ), delimiter = '\t ' ):
You can’t perform that action at this time.
0 commit comments