diff --git a/java/src/org/broadinstitute/sting/playground/gatk/walkers/SingleSampleGenotyper.java b/java/src/org/broadinstitute/sting/playground/gatk/walkers/SingleSampleGenotyper.java index 9d43067e6..a9771cce0 100644 --- a/java/src/org/broadinstitute/sting/playground/gatk/walkers/SingleSampleGenotyper.java +++ b/java/src/org/broadinstitute/sting/playground/gatk/walkers/SingleSampleGenotyper.java @@ -229,7 +229,7 @@ public class SingleSampleGenotyper extends LocusWalker reads, List offsets) { String[] indels = BasicPileup.indelPileup(reads, offsets); - IndelLikelihood indelCall = new IndelLikelihood(indels); + IndelLikelihood indelCall = new IndelLikelihood(indels, 1e-4); if (! indelCall.getType().equals("ref")) { System.out.printf("INDEL %s %s\n", context.getLocation(), indelCall);