ferritin_ligandmpnn/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
//! ferritin-amplify
//!
//! - utilities to convert sequence formats (PDB; mmcif) to ML-ready tensors.
//! - CLI to handle the above.
//!
mod cli;
mod commands;
pub mod ligandmpnn;

pub use ligandmpnn::proteinfeatures::LMPNNFeatures;
pub use ligandmpnn::model::ProteinMPNN;
pub use ligandmpnn::configs::ProteinMPNNConfig;