Removed debugging output

This commit is contained in:
Eric Banks 2011-10-26 15:50:20 -04:00
parent b39fcb1bea
commit 2f21b6ecfb
1 changed files with 0 additions and 4 deletions

View File

@ -600,10 +600,6 @@ public class GenomeAnalysisEngine {
logger.info(String.format("Excluding %d loci from original intervals (%.2f%% reduction)", logger.info(String.format("Excluding %d loci from original intervals (%.2f%% reduction)",
toPruneSize - intervalSize, (toPruneSize - intervalSize) / (0.01 * toPruneSize))); toPruneSize - intervalSize, (toPruneSize - intervalSize) / (0.01 * toPruneSize)));
} }
// DEBUGGING OUTPUT
for ( GenomeLoc loc : intervals )
logger.info("Including -L interval: " + loc);
} }
/** /**