diff --git a/java/src/org/broadinstitute/sting/playground/gatk/walkers/Recalibration/CovariateCounterWalker.java b/java/src/org/broadinstitute/sting/playground/gatk/walkers/Recalibration/CovariateCounterWalker.java index f24136cd3..f39d136cb 100755 --- a/java/src/org/broadinstitute/sting/playground/gatk/walkers/Recalibration/CovariateCounterWalker.java +++ b/java/src/org/broadinstitute/sting/playground/gatk/walkers/Recalibration/CovariateCounterWalker.java @@ -114,6 +114,11 @@ public class CovariateCounterWalker extends LocusWalker { System.exit( 0 ); // early exit here because user requested it } + // Warn the user if no dbSNP file was specified + if( this.getToolkit().getArguments().DBSNPFile == null ) { + Utils.warnUser("This calculation is critically dependent on being able to skip over known variant sites. Are you sure you want to be running without a dbSNP rod specified?"); + } + // Initialize the requested covariates by parsing the -cov argument requestedCovariates = new ArrayList(); if( validateOldRecalibrator ) {