fix the python2to3 bugs
This commit is contained in:
parent
b847b1f634
commit
5aa4ff3e6b
1 changed files with 1 additions and 1 deletions
2
tiger
2
tiger
|
@ -141,7 +141,7 @@ for i in range(len(seqs[0])):
|
|||
|
||||
|
||||
#Compare character patterns and score
|
||||
ranks = range(len(patterns))
|
||||
ranks = list(range(len(patterns))) #ranks = range(len(patterns))
|
||||
comp_ranks = []
|
||||
keep = []
|
||||
br = ""
|
||||
|
|
Loading…
Reference in a new issue