Merge pull request #943 from broadinstitute/ldg_fixAllowNonUniqueKmers
Fix implementation of allowNonUniqueKmersInRef so that it applies to all...
This commit is contained in:
commit
cb4c3ea09e
|
|
@ -124,7 +124,7 @@ public class ReadThreadingAssembler extends LocalAssemblyEngine {
|
||||||
while ( results.isEmpty() && numIterations <= MAX_KMER_ITERATIONS_TO_ATTEMPT ) {
|
while ( results.isEmpty() && numIterations <= MAX_KMER_ITERATIONS_TO_ATTEMPT ) {
|
||||||
// on the last attempt we will allow low complexity graphs
|
// on the last attempt we will allow low complexity graphs
|
||||||
final boolean lastAttempt = numIterations == MAX_KMER_ITERATIONS_TO_ATTEMPT;
|
final boolean lastAttempt = numIterations == MAX_KMER_ITERATIONS_TO_ATTEMPT;
|
||||||
addResult(results, createGraph(reads, refHaplotype, kmerSize, givenHaplotypes, lastAttempt, lastAttempt));
|
addResult(results, createGraph(reads, refHaplotype, kmerSize, givenHaplotypes, lastAttempt, allowNonUniqueKmersInRef || lastAttempt));
|
||||||
kmerSize += KMER_SIZE_ITERATION_INCREASE;
|
kmerSize += KMER_SIZE_ITERATION_INCREASE;
|
||||||
numIterations++;
|
numIterations++;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue