diff --git a/java/src/org/broadinstitute/sting/playground/gatk/walkers/PoolCaller.java b/java/src/org/broadinstitute/sting/playground/gatk/walkers/PoolCaller.java index 559a7fe16..cc64fd3d7 100644 --- a/java/src/org/broadinstitute/sting/playground/gatk/walkers/PoolCaller.java +++ b/java/src/org/broadinstitute/sting/playground/gatk/walkers/PoolCaller.java @@ -315,12 +315,20 @@ public class PoolCaller extends LocusWalker return contexts; } - public void onTraversalDone() + public void onTraversalDone(String result) { - discovery_output_file.flush(); - discovery_output_file.close(); - individual_output_file.flush(); - individual_output_file.close(); + System.out.printf("OTD\n"); + try + { + discovery_output_file.flush(); + discovery_output_file.close(); + individual_output_file.flush(); + individual_output_file.close(); + } + catch (Exception e) + { + e.printStackTrace(); + } return; } 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 1ba81fb24..f3b87eb41 100644 --- a/java/src/org/broadinstitute/sting/playground/gatk/walkers/SingleSampleGenotyper.java +++ b/java/src/org/broadinstitute/sting/playground/gatk/walkers/SingleSampleGenotyper.java @@ -65,6 +65,7 @@ public class SingleSampleGenotyper extends LocusWalker