use std::ops::Range;
pub type Position = u32;
pub type Length = u32;
pub trait AbstractInterval {
fn contig(&self) -> &str;
fn range(&self) -> Range<Position>;
}
#[derive(Debug, PartialEq, Eq, Clone, Hash, Serialize, Deserialize)]
pub struct Interval {
contig: String,
range: Range<Position>,
}
impl AbstractInterval for Interval {
fn contig(&self) -> &str {
&self.contig
}
fn range(&self) -> Range<Position> {
self.range.clone()
}
}
pub trait AbstractLocus {
fn contig(&self) -> &str;
fn pos(&self) -> Position;
}
#[derive(Debug, PartialEq, Eq, Clone, Hash, Serialize, Deserialize)]
pub struct Locus {
contig: String,
pos: Position,
}
impl AbstractLocus for Locus {
fn contig(&self) -> &str {
&self.contig
}
fn pos(&self) -> Position {
self.pos
}
}