package org.broadinstitute.sting.gatk.walkers; import org.broadinstitute.sting.gatk.refdata.RefMetaDataTracker; import org.broadinstitute.sting.gatk.LocusContext; /** * Created by IntelliJ IDEA. * User: mdepristo * Date: Feb 22, 2009 * Time: 2:52:28 PM * To change this template use File | Settings | File Templates. */ @By(DataSource.READS) @Requires({DataSource.READS,DataSource.REFERENCE}) public abstract class LocusWalker extends Walker { // Do we actually want to operate on the context? public boolean filter(RefMetaDataTracker tracker, char ref, LocusContext context) { return true; // We are keeping all the reads } // Map over the org.broadinstitute.sting.gatk.LocusContext public abstract MapType map(RefMetaDataTracker tracker, char ref, LocusContext context); }