From 4b718688d520971cce1d259eadb7d5761894f3b3 Mon Sep 17 00:00:00 2001 From: asivache Date: Fri, 22 May 2009 17:27:28 +0000 Subject: [PATCH] no changes, really, just synchronizing (instead of reversing) to increase the amount of entropy git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@801 348d0f76-0448-11de-a6fe-93d51630548a --- .../sting/playground/indels/IndelInspectorMain.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/src/org/broadinstitute/sting/playground/indels/IndelInspectorMain.java b/java/src/org/broadinstitute/sting/playground/indels/IndelInspectorMain.java index e3a175e4d..283031499 100755 --- a/java/src/org/broadinstitute/sting/playground/indels/IndelInspectorMain.java +++ b/java/src/org/broadinstitute/sting/playground/indels/IndelInspectorMain.java @@ -112,7 +112,7 @@ public class IndelInspectorMain extends CommandLineProgram { for ( SAMRecord r : samReader ) { - if ( r.getReadUnmappedFlag() ) continue; + if ( r.getReadUnmappedFlag() ) { continue; } if ( r.getReferenceName() != cur_contig) { cur_contig = r.getReferenceName(); System.out.println("Contig "+cur_contig);