Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/hCoV-2019/pangolin
Browse files Browse the repository at this point in the history
  • Loading branch information
aineniamh committed Jun 4, 2021
2 parents 3c05859 + 8965e57 commit 12fb6e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pangolin/scripts/pangolearn.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@ def encodeSeq(seq, indiciesToKeep):

for i in indiciesToKeep:
if i < len(seq):
cleaned, imputed = clean(seq[i], i)
cleaned, isImputed = clean(seq[i], i)

dataLine.extend(cleaned)

if(imputed):
if(isImputed):
imputed = imputed + 1
else:
nonimputed = nonimputed + 1
Expand Down

0 comments on commit 12fb6e2

Please sign in to comment.