| Crates.io | imgt |
| lib.rs | imgt |
| version | 0.1.0 |
| created_at | 2025-11-12 15:43:00.560182+00 |
| updated_at | 2025-11-12 15:43:00.560182+00 |
| description | Access the IMGT database from Rust |
| homepage | |
| repository | https://github.com/rusteomics/mzcore |
| max_upload_size | |
| id | 1929553 |
| size | 2,131,215 |
Handle the IMGT database of antibody germlines easily.
use imgt::*;
let selection = Selection::default()
.species([Species::HomoSapiens])
.chain([ChainType::Heavy])
.gene([GeneType::V]);
let first = selection.germlines(&STATIC_IMGT).next().unwrap();
assert_eq!(first.name(), "IGHV1-2*01");
rayon - enables parallel iterators using rayon