Initial commit

This commit is contained in:
redclawsystems
2026-03-04 00:08:42 +00:00
commit 4d88dc0584
4449 changed files with 1556714 additions and 0 deletions
@@ -0,0 +1,16 @@
//! Biology Applications Module
pub mod genomics;
pub mod metabolism;
pub mod phylogeny;
pub mod protein;
pub mod sequence;
pub use genomics::{GenomicsToolkit, PhylogenomicsAnalyzer};
pub use metabolism::MetabolicNetwork;
pub use phylogeny::{BLAST, HMM, MSA, Phylogeny};
pub use protein::{
ProteinFolding, ProteinStructurePredictor, SecondaryStructure, StructurePredictionModel,
TertiaryStructure,
};
pub use sequence::{AminoAcid, DNASequence, ProteinSequence, RNASequence, SequenceAnalyzer};