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

org.broadinstitute.hellbender.utils.IntervalSetRule Maven / Gradle / Ivy

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

/**
 * set operators for combining lists of intervals
 */
public enum IntervalSetRule {
    /** Take the union of all intervals */
    UNION,
    /** Take the intersection of intervals (the subset that overlaps all intervals specified) */
    INTERSECTION
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy