Hastic standalone https://hastic.io
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
348 B

use subbeat::metric::MetricResult;
struct PatternDetector {
}
impl PatternDetector {
fn new() -> PatternDetector {
PatternDetector{}
}
fn learn(reads: &Vec<Vec<(u64, f64)>>) {
// TODO: implement
}
fn detect(ts: &Vec<(u64, f64)>) -> Vec<(u64, u64)> {
// fill backet
return Vec::new();
}
}