From 67bcf3a7e4bd67c887daf440bd569586ccdaa9d9 Mon Sep 17 00:00:00 2001 From: kshakir Date: Fri, 24 Sep 2010 14:52:51 +0000 Subject: [PATCH] Fixed VariantEval rod binding names. git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@4342 348d0f76-0448-11de-a6fe-93d51630548a --- scala/qscript/examples/ExampleUnifiedGenotyper.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scala/qscript/examples/ExampleUnifiedGenotyper.scala b/scala/qscript/examples/ExampleUnifiedGenotyper.scala index 407268b2e..daf208359 100644 --- a/scala/qscript/examples/ExampleUnifiedGenotyper.scala +++ b/scala/qscript/examples/ExampleUnifiedGenotyper.scala @@ -61,7 +61,7 @@ class ExampleUnifiedGenotyper extends QScript { genotyper.input_file :+= qscript.bamFile genotyper.out = swapExt(qscript.bamFile, "bam", "unfiltered.vcf") - evalUnfiltered.rodBind :+= RodBind("vcf", "VCF", genotyper.out) + evalUnfiltered.rodBind :+= RodBind("eval", "VCF", genotyper.out) evalUnfiltered.out = swapExt(genotyper.out, "vcf", "eval") variantFilter.rodBind :+= RodBind("vcf", "VCF", genotyper.out) @@ -69,7 +69,7 @@ class ExampleUnifiedGenotyper extends QScript { variantFilter.filterName = filterNames variantFilter.filterExpression = filterExpressions - evalFiltered.rodBind :+= RodBind("vcf", "VCF", variantFilter.out) + evalFiltered.rodBind :+= RodBind("eval", "VCF", variantFilter.out) evalFiltered.out = swapExt(variantFilter.out, "vcf", "eval") add(genotyper, evalUnfiltered)