ferritin_plms/ligandmpnn/mod.rs
1//! ferritin-ligandmpnn
2//!
3//! - utilities to convert sequence formats (PDB; mmcif) to ML-ready tensors.
4//! - CLI to handle the above.
5//!
6// mod commands;
7pub mod configs;
8pub mod model;
9pub mod proteinfeatures;
10mod proteinfeaturesmodel;
11pub use configs::ProteinMPNNConfig;
12pub use model::ProteinMPNN;