Skip to content

Commit

Permalink
fix #432 rU bis bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Cantalapiedra committed May 11, 2023
1 parent e90f69e commit a55e3ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eggnogmapper/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ def translate_cds_to_prots(source, outfile, table):
if source.endswith('.gz'):
_source = gzip.open(source, "rt")
else:
_source = open(source, "rU")
_source = open(source, "r")
else:
_source = iter(source.split("\n"))

Expand Down

0 comments on commit a55e3ad

Please sign in to comment.