From 532263ea259993cc2cf42df716006a996a70212e Mon Sep 17 00:00:00 2001 From: asivache Date: Wed, 21 Apr 2010 18:38:24 +0000 Subject: [PATCH] Oooops, forgot to update the test git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@3229 348d0f76-0448-11de-a6fe-93d51630548a --- .../sting/gatk/refdata/VariantContextAdaptorsUnitTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/java/test/org/broadinstitute/sting/gatk/refdata/VariantContextAdaptorsUnitTest.java b/java/test/org/broadinstitute/sting/gatk/refdata/VariantContextAdaptorsUnitTest.java index 56697abad..d6f926879 100644 --- a/java/test/org/broadinstitute/sting/gatk/refdata/VariantContextAdaptorsUnitTest.java +++ b/java/test/org/broadinstitute/sting/gatk/refdata/VariantContextAdaptorsUnitTest.java @@ -78,7 +78,7 @@ public class VariantContextAdaptorsUnitTest extends BaseTest { glf.next(); records.add((GLFSingleCall)glf.mRecord); // we know they're all single calls in the reference file VariantContext vc = VariantContextAdaptors.toVariantContext("GLF",glf); - gw.addCall(vc); + gw.addCall(vc,null); } gw.close(); // close the file @@ -142,7 +142,7 @@ public class VariantContextAdaptorsUnitTest extends BaseTest { parseGeli(geliText, line); records.add(geliText); // we know they're all single calls in the reference file VariantContext vc = VariantContextAdaptors.toVariantContext("Geli",geliText); - gw.addCall(vc); + gw.addCall(vc,null); line = readLine(reader); } gw.close(); // close the file