
org.broadinstitute.hellbender.utils.IntervalSetRule Maven / Gradle / Ivy
The 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 - 2025 Weber Informatics LLC | Privacy Policy