Closed nleroy917 closed 3 months ago
@donaldcampbelljr and I were discussing how it would be useful to have some core utilities available for all modules. Some examples:
fn read_regions_from_bedfile(path: &str) -> Result<Vec<Region>> fn write_to_bedfile(path: &str) -> Result<()>
This probably requires some core structs and traits like Region, RegionSet, etc.
Region
RegionSet
Kinda have this in there now...
@donaldcampbelljr and I were discussing how it would be useful to have some core utilities available for all modules. Some examples:
This probably requires some core structs and traits like
Region
,RegionSet
, etc.