Don't require entropy reduction when cleaning only at known sites; instead we need to trust the known indels. This will improve consistency between lane-level and aggregated cleaning.
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@4076 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
b6989289fc
commit
30a104228a
|
|
@ -533,7 +533,7 @@ public class IndelRealigner extends ReadWalker<Integer, Integer> {
|
|||
if ( !updateRead(bestConsensus.cigar, bestConsensus.positionOnReference, indexPair.second, aRead, (int)leftmostIndex) )
|
||||
return;
|
||||
}
|
||||
if ( !alternateReducesEntropy(altReads, reference, leftmostIndex) ) {
|
||||
if ( !USE_KNOWN_INDELS_ONLY && !alternateReducesEntropy(altReads, reference, leftmostIndex) ) {
|
||||
if ( statsOutput != null ) {
|
||||
try {
|
||||
statsOutput.write(currentInterval.toString());
|
||||
|
|
|
|||
Loading…
Reference in New Issue