Skip to content

Commit ce9fd69

Browse files
authored
Update extract_orthofinder.py
1 parent 3010a3f commit ce9fd69

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

padmet/utils/connection/extract_orthofinder.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ def dict_data_to_sbml(dict_data, dict_orthogroups=None, dict_orthologues=None, s
399399
ga_for_gbr = re.sub(r" or " , "|", ga)
400400
ga_for_gbr = re.sub(r" and " , "&", ga_for_gbr)
401401
ga_for_gbr = re.sub(r"\s" , "", ga_for_gbr)
402-
if re.findall(r"\||&", ga_for_gbr):
402+
if re.findall("\||&", ga_for_gbr):
403403
to_compare_ga_subsets = list(gbr.compile_input(ga_for_gbr))
404404
else:
405405
ga_for_gbr = re.sub(r"\(|\)" , "", ga_for_gbr)
@@ -462,3 +462,4 @@ def dict_data_to_sbml(dict_data, dict_orthogroups=None, dict_orthologues=None, s
462462

463463

464464

465+

0 commit comments

Comments
 (0)