1pub mod chromosome; 2pub mod genes; 3pub mod genotype; 4pub mod phenotype; 5pub mod population; 6 7pub use chromosome::*; 8pub use genes::*; 9pub use genotype::*; 10pub use phenotype::*; 11pub use population::*;