Moved output outside of for loop so I don't have 10 different versions of the same variant (though, now that I think of it, that's not necessarily a terrible thing for debugging...

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@1045 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
kiran 2009-06-18 19:59:26 +00:00
parent 768a16e791
commit a4fa02f11c
1 changed files with 2 additions and 1 deletions

View File

@ -49,8 +49,9 @@ public class VariantFiltrationWalker extends LocusWalker<Integer, Integer> {
else { throw new StingException(String.format("Cannot understand feature '%s'", featureName)); }
variant.adjustLikelihoods(ivf.compute(ref, context));
vwriter.println(variant);
}
vwriter.println(variant);
return 1;
}