From 77a6608784e4434152866527e39b92d193682104 Mon Sep 17 00:00:00 2001 From: weisburd Date: Wed, 14 Apr 2010 14:38:18 +0000 Subject: [PATCH] Changed a variable name git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@3163 348d0f76-0448-11de-a6fe-93d51630548a --- .../gatk/walkers/annotator/VariantAnnotatorEngine.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/java/src/org/broadinstitute/sting/gatk/walkers/annotator/VariantAnnotatorEngine.java b/java/src/org/broadinstitute/sting/gatk/walkers/annotator/VariantAnnotatorEngine.java index a2c231f50..620b081a0 100755 --- a/java/src/org/broadinstitute/sting/gatk/walkers/annotator/VariantAnnotatorEngine.java +++ b/java/src/org/broadinstitute/sting/gatk/walkers/annotator/VariantAnnotatorEngine.java @@ -38,7 +38,7 @@ public class VariantAnnotatorEngine { private Map> requestedColumnsMap; // command-line option used for GenomicAnnotation. - private boolean explode; + private boolean oneToMany; // use this constructor if you want all possible annotations @@ -194,7 +194,7 @@ public class VariantAnnotatorEngine { final String inputFileBindingName = annotationsFromInputFile.getKey(); final List> matchingRecords = (List>) annotationsFromInputFile.getValue(); - if( matchingRecords.size() > 1 && explode) + if( matchingRecords.size() > 1 && oneToMany) { //More than one record matched in this file. After this, infoAnnotationOutputsList.size() will be infoAnnotationOutputsList.size()*matchingRecords.size(). infoAnnotationOutputsList = explodeInfoAnnotationOutputsList( infoAnnotationOutputsList, matchingRecords, inputFileBindingName); @@ -375,10 +375,10 @@ public class VariantAnnotatorEngine { * * See class-level comments for more details. * - * @param explode + * @param oneToMany */ - public void setExplode(boolean explode) { - this.explode = explode; + public void setOneToMany(boolean oneToMany) { + this.oneToMany = oneToMany; } /**