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 prelude;
8pub mod reference;
9
10///! This crate provides a set of utilities for working with the [OpenTelemetry](https://opentelemetry.io/) ecosystem.
11pub type BoxError = Box<dyn Error + Send + Sync>;