Skip to content

Commit

Permalink
change var name
Browse files Browse the repository at this point in the history
  • Loading branch information
valenzuelaomar committed Aug 25, 2023
1 parent 10a0cd6 commit 4eec79b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def load_contig_lengths(contig_fasta):
lengths[cur[0]] = cur[1]
cur = (line[1:].strip(), 0)
else:
len = (cur[0], cur[1] + len(line.strip())) if cur is not None else len(line.strip())
cur = (cur[0], cur[1] + len(line.strip())) if cur is not None else len(line.strip())
if cur is not None:
lengths[cur[0]] = cur[1]
return lengths
Expand Down

0 comments on commit 4eec79b

Please sign in to comment.