1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//! # ferritin-core
//!
//! A library for working with biomolecular structure files and performing common operations.
//!
//! __ferritin-core__ provides functionality for:
//! * Reading and writing common biomolecular file formats (PDB, mmCIF, etc.)
//! * Selecting atoms and residues based on various criteria
//! * Computing geometric properties like distances, angles, and dihedrals
//! * Basic molecular operations like superposition and RMSD calculations
//!
//! The main entry point is the [`AtomCollection`] struct which represents a biomolecular structure
//! and provides methods for manipulating and analyzing it.
//!
mod atomcollection;
mod bonds;
mod conversions;
mod info;
mod residue;
mod selection;

pub use self::atomcollection::AtomCollection;
pub use self::bonds::{Bond, BondOrder};
pub use self::residue::ResidueAtoms;
pub use self::selection::Selection;