All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.broadinstitute.hellbender.tools.walkers.featuremapping.FeatureMapper Maven / Gradle / Ivy

The newest version!
package org.broadinstitute.hellbender.tools.walkers.featuremapping;

import org.broadinstitute.hellbender.engine.ReferenceContext;
import org.broadinstitute.hellbender.utils.read.GATKRead;

import java.util.function.Consumer;

public interface FeatureMapper {

    enum FilterStatus {
        None,
        Filtered,
        NoFeatureAndFiltered
    };

    void        forEachOnRead(GATKRead read, ReferenceContext referenceContext, Consumer action);
    FilterStatus noFeatureButFilterAt(GATKRead read, ReferenceContext referenceContext, int start);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy