gtars-igd 0.5.0

Rust implementation of IGD: a high-performance genomic interval search tool
Documentation
1
2
3
4
5
6
7
8
9
10
#![allow(nonstandard_style)]

pub mod create;
pub mod search;

pub mod consts {
    pub const IGD_CMD: &str = "igd";
    pub const IGD_CREATE: &str = "create";
    pub const IGD_SEARCH: &str = "search";
}