Bug fix to avoid build failure (class changed under me??)

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@3416 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
delangel 2010-05-21 18:48:56 +00:00
parent 1753d07b02
commit 355396109b
1 changed files with 2 additions and 2 deletions

View File

@ -153,8 +153,8 @@ public class AnnotationByAlleleFrequencyWalker extends RodWalker<Integer, Integ
try {
vc_eval = tracker.getVariantContext("eval", vc, loc, true);
vc_ref = tracker.getVariantContext("HapMap", vc, loc, true);
vc_eval = tracker.getVariantContext(ref,"eval", vc, loc, true);
vc_ref = tracker.getVariantContext(ref,"HapMap", vc, loc, true);
} catch (java.util.NoSuchElementException e) {
return 0;
}