Skip to content

Commit

Permalink
2prev
Browse files Browse the repository at this point in the history
  • Loading branch information
mikessh committed Mar 18, 2018
1 parent b20c214 commit 6e68163
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main/groovy/com/milaboratory/migec/Assemble.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -503,17 +503,17 @@ GParsPool.withPool THREADS, {
}
} else {
if (noCollision) {
counts.eachWithIndex { int count, int i ->
nCollisionMigs[i].incrementAndGet()
nCollisionReads[i].addAndGet(count)
}
} else {
counts.eachWithIndex { int count, int i ->
if (count < minMigSize) {
nOverseqMigs[i].incrementAndGet()
nOverseqReads[i].addAndGet(count)
}
}
} else {
counts.eachWithIndex { int count, int i ->
nCollisionMigs[i].incrementAndGet()
nCollisionReads[i].addAndGet(count)
}
}
}

Expand Down

0 comments on commit 6e68163

Please sign in to comment.