Another trivial change to make VQSR work with indels

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@5073 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
delangel 2011-01-25 19:05:31 +00:00
parent b22f82d5dd
commit db2e2cb0ff
1 changed files with 2 additions and 2 deletions

View File

@ -142,8 +142,8 @@ public class ApplyVariantCuts extends RodWalker<Integer, Integer> {
return 1;
}
for( VariantContext vc : tracker.getVariantContexts(ref, inputNames, null, context.getLocation(), false, false) ) {
if( vc != null && vc.isSNP() ) {
for( VariantContext vc : tracker.getVariantContexts(ref, inputNames, null, context.getLocation(), true, false) ) {
if( vc != null ) {
String filterString = null;
if( !vc.isFiltered() ) {
try {