virust_locator/lib.rs
1//! This crate provides a set of utilities for generating sequence locators for HIV/SIV sequences
2//! resembling the LANL HIV-locator tool.
3
4use std::error::Error;
5pub mod config;
6pub mod locator;
7pub mod reference;
8
9///! This crate provides a set of utilities for working with the [OpenTelemetry](https://opentelemetry.io/) ecosystem.
10pub type BoxError = Box<dyn Error + Send + Sync>;