diff --git a/java/src/org/broadinstitute/sting/gatk/walkers/genotyper/UnifiedGenotyper.java b/java/src/org/broadinstitute/sting/gatk/walkers/genotyper/UnifiedGenotyper.java index 0beae9c8d..7b2cb063c 100755 --- a/java/src/org/broadinstitute/sting/gatk/walkers/genotyper/UnifiedGenotyper.java +++ b/java/src/org/broadinstitute/sting/gatk/walkers/genotyper/UnifiedGenotyper.java @@ -167,7 +167,7 @@ public class UnifiedGenotyper extends LocusWalker, GenotypeL Pair, GenotypeLocusData> call = gcm.calculateGenotype(tracker, ref, MQ0freeContext, priors); // annotate the call, if possible - if ( call != null && call.second != null && call.second instanceof ArbitraryFieldsBacked) { + if ( call != null && call.second != null && call.second instanceof ArbitraryFieldsBacked && ! (VARIANTS_FILE == null && out == null) ) { Map annotations = VariantAnnotator.getAnnotations(refContext, fullContext, call.first); ((ArbitraryFieldsBacked)call.second).setFields(annotations); }