We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b20c214 commit 6e68163Copy full SHA for 6e68163
src/main/groovy/com/milaboratory/migec/Assemble.groovy
@@ -503,17 +503,17 @@ GParsPool.withPool THREADS, {
503
}
504
} else {
505
if (noCollision) {
506
- counts.eachWithIndex { int count, int i ->
507
- nCollisionMigs[i].incrementAndGet()
508
- nCollisionReads[i].addAndGet(count)
509
- }
510
- } else {
511
counts.eachWithIndex { int count, int i ->
512
if (count < minMigSize) {
513
nOverseqMigs[i].incrementAndGet()
514
nOverseqReads[i].addAndGet(count)
515
516
+ } else {
+ counts.eachWithIndex { int count, int i ->
+ nCollisionMigs[i].incrementAndGet()
+ nCollisionReads[i].addAndGet(count)
+ }
517
518
519
0 commit comments