diff --git a/java/src/org/broadinstitute/sting/playground/gatk/walkers/secondaryBases/SecondaryBaseTransitionTableWalker.java b/java/src/org/broadinstitute/sting/playground/gatk/walkers/secondaryBases/SecondaryBaseTransitionTableWalker.java index ab24b85cf..91d838604 100755 --- a/java/src/org/broadinstitute/sting/playground/gatk/walkers/secondaryBases/SecondaryBaseTransitionTableWalker.java +++ b/java/src/org/broadinstitute/sting/playground/gatk/walkers/secondaryBases/SecondaryBaseTransitionTableWalker.java @@ -3,23 +3,23 @@ package org.broadinstitute.sting.playground.gatk.walkers.secondaryBases; import org.broadinstitute.sting.gatk.contexts.AlignmentContext; import org.broadinstitute.sting.gatk.contexts.ReferenceContext; import org.broadinstitute.sting.gatk.refdata.RefMetaDataTracker; -import org.broadinstitute.sting.gatk.walkers.*; +import org.broadinstitute.sting.gatk.walkers.LocusWalker; +import org.broadinstitute.sting.gatk.walkers.Reference; +import org.broadinstitute.sting.gatk.walkers.Window; import org.broadinstitute.sting.gatk.walkers.genotyper.*; import org.broadinstitute.sting.playground.utils.NamedTable; import org.broadinstitute.sting.utils.BaseUtils; +import org.broadinstitute.sting.utils.genotype.Genotype; import org.broadinstitute.sting.utils.pileup.PileupElement; import org.broadinstitute.sting.utils.pileup.ReadBackedPileup; -import org.broadinstitute.sting.utils.genotype.Genotype; + import java.util.HashMap; /** - * Created By User: Michael Melgar - * Date: Nov 2, 2009 - * Time: 8:45:32 PM * Given a secondary base annotated .bam file and a reference, this walker generates a table of secondary base counts * for all called loci in the .bam. Each base call made is an instance included in the table. Specifically, the walker * maps the following vector to a count of secondary bases: - * . + * . */ @Reference(window=@Window(start=-1,stop=1)) @@ -41,6 +41,9 @@ public class SecondaryBaseTransitionTableWalker extends LocusWalker>>"); - out.println("ReadGroup CallType CalledGenotype ReferenceBase PrimaryBase PreviousBase SecondaryBase Count"); + out.println("Type ReadGroup CalledGenotype AlleleBalance ReferenceBase PrimaryBase PreviousBase SecondaryBase Count"); for (String key : counts.keySet()) { out.println(key + ' ' + counts.get(key).toString()); } out.println("Processed " + result.toString() + " loci."); } -} +} \ No newline at end of file