rsvart 0.1.5

A small library for representing genomic variants and regions.
Documentation
1
2
3
4
5
6
7
use crate::ops::Located;

pub trait Contiged<C> {
    type Contig: Located<C> + Eq;

    fn contig(&self) -> &Self::Contig;
}