adding a couple of small changes to support contract with VariantEval

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@1283 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
aaron 2009-07-21 03:49:15 +00:00
parent b4adb5133a
commit f13a1e8591
1 changed files with 2 additions and 2 deletions

View File

@ -273,7 +273,7 @@ public class RodGLF implements ReferenceOrderedDatum, AllelicVariant, Iterator<R
*/
@Override
public double getMAF() {
throw new UnsupportedOperationException("getMAF is unsupported");
return 0;
}
/**
@ -283,7 +283,7 @@ public class RodGLF implements ReferenceOrderedDatum, AllelicVariant, Iterator<R
*/
@Override
public double getHeterozygosity() {
throw new UnsupportedOperationException("getHeterozygosity is unsupported");
return 0;
}
/**