Skip to content

Commit eb59499

Browse files
author
Karel Kyovsky
committed
Removed unnecessary variable
1 parent 265475a commit eb59499

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tiddit/tiddit_gc.pyx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,8 @@ def binned_gc(fasta_path,contig,bin_size,n_cutoff):
2727
if n/bin_size > n_cutoff:
2828
contig_gc[bin]=-1
2929
else:
30-
result = round(100*gc/number_of_chars)
31-
contig_gc[bin] = result
32-
30+
contig_gc[bin] = round(100*gc/number_of_chars)
31+
3332
next_start+=bin_size
3433
return([contig,contig_gc])
3534

0 commit comments

Comments
 (0)