imgt/lib.rs
1#![doc = include_str!("../README.md")]
2
3//! This crate handles parsing the [IMGT LIGM-DB database](https://www.imgt.org/) into structures compatible with mzcore.
4//! It additionally stores all regions and annotations. There are two main ways of selecting germline(s), specified by name
5//! [`get_germline`](crate::imgt::get_germline) or by building a query over the data [`Selection`](crate::imgt::Selection).
6//!
7//! <details><summary>Data present per species</summary>
8//!
9#![doc = include_str!("germlines.md")]
10//!
11//! </details>
12
13mod combine;
14mod cv;
15mod fancy;
16mod imgt_gene;
17mod parse;
18mod regions;
19mod select;
20mod species;
21mod structs;
22
23pub use fancy::*;
24
25pub use cv::{IMGT, STATIC_IMGT};
26pub use regions::*;
27pub use select::*;
28pub use species::*;