[][src]Struct rust_lapper::Lapper

pub struct Lapper<T: Eq + Clone> {
    pub intervals: Vec<Interval<T>>,
    pub overlaps_merged: bool,
    // some fields omitted
}

Primary object of the library. The public intervals holds all the intervals and can be used for iterating / pulling values out of the tree.

Fields

intervals: Vec<Interval<T>>overlaps_merged: bool

Methods

impl<T: Eq + Clone> Lapper<T>[src]

pub fn new(intervals: Vec<Interval<T>>) -> Self[src]

Create a new instance of Lapper by passing in a vector of Intervals. This vector will immediately be sorted by start order.

pub fn len(&self) -> usize[src]

Get the number over intervals in Lapper

pub fn is_empty(&self) -> bool[src]

Check if lapper is empty

pub fn cov(&self) -> usize[src]

Get the number of positions covered by the intervals in Lapper. This provides immutable access if it has already been set, or on the fly calculation.

pub fn set_cov(&mut self) -> usize[src]

Get the number fo positions covered by the intervals in Lapper and store it. If you are going to be using the coverage, you should set it to avoid calculating it over and over.

Important traits for IterLapper<'a, T>
pub fn iter(&self) -> IterLapper<T>[src]

Return an iterator over the intervals in Lapper

pub fn merge_overlaps(&mut self)[src]

Merge any intervals that overlap with eachother within the Lapper. This is an easy way to speed up queries.

pub fn union_and_intersect(&self, other: &Self) -> (usize, usize)[src]

Find the union and the intersect of two lapper objects. Union: The set of positions found in both lappers Intersect: The number of positions where both lappers intersect. Note that a position only counts one time, multiple Intervals covering the same position don't add up. TODO: a speedup should be available if merge overlaps has already been run

pub fn intersect(&self, other: &Self) -> usize[src]

Find the intersect of two lapper objects. Intersect: The number of positions where both lappers intersect. Note that a position only counts one time, multiple Intervals covering the same position don't add up

pub fn union(&self, other: &Self) -> usize[src]

Find the union of two lapper objects.

Important traits for IterFind<'a, T>
pub fn find(&self, start: usize, stop: usize) -> IterFind<T>[src]

Find all intervals that overlap start .. stop

Important traits for IterFind<'a, T>
pub fn seek<'a>(
    &'a self,
    start: usize,
    stop: usize,
    cursor: &mut usize
) -> IterFind<'a, T>
[src]

Find all intevals that overlap start .. stop. This method will work when queries to this lapper are in sorted (start) order. It uses a linear search from the last query instead of a binary search. A reference to a cursor must be passed in. This reference will be modified and should be reused in the next query. This allows seek to not need to make the lapper object mutable, and thus use the same lapper accross threads.

Trait Implementations

impl<T: Eq + Clone> IntoIterator for Lapper<T>[src]

type Item = Interval<T>

The type of the elements being iterated over.

type IntoIter = IntoIter<Self::Item>

Which kind of iterator are we turning this into?

impl<'a, T: Eq + Clone> IntoIterator for &'a Lapper<T>[src]

type Item = &'a Interval<T>

The type of the elements being iterated over.

type IntoIter = Iter<'a, Interval<T>>

Which kind of iterator are we turning this into?

impl<'a, T: Eq + Clone> IntoIterator for &'a mut Lapper<T>[src]

type Item = &'a mut Interval<T>

The type of the elements being iterated over.

type IntoIter = IterMut<'a, Interval<T>>

Which kind of iterator are we turning this into?

impl<T: Debug + Eq + Clone> Debug for Lapper<T>[src]

Auto Trait Implementations

impl<T> Send for Lapper<T> where
    T: Send

impl<T> Unpin for Lapper<T> where
    T: Unpin

impl<T> Sync for Lapper<T> where
    T: Sync

impl<T> UnwindSafe for Lapper<T> where
    T: UnwindSafe

impl<T> RefUnwindSafe for Lapper<T> where
    T: RefUnwindSafe

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]