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

org.broadinstitute.hellbender.engine.MultiIntervalShard Maven / Gradle / Ivy

There is a newer version: 4.6.0.0
Show newest version
package org.broadinstitute.hellbender.engine;

import org.broadinstitute.hellbender.utils.SimpleInterval;

import java.util.List;

/**
 * An interface to represent shards of arbitrary data spanning multiple intervals.
 *
 * @param  Type of data in this shard
 */
public interface MultiIntervalShard extends Iterable {

    /**
     * @return A List of this shard's intervals
     */
    List getIntervals();

    /**
     * @return A List of this shard's intervals, with padding added to each interval on both sides
     */
    List getPaddedIntervals();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy