Skip to main content

ggetrs_archs4/
lib.rs

1/// Module for functions
2pub mod functions;
3
4/// Module for handling result structs and containers
5pub mod types;
6
7/// module for launching commands
8mod launch;
9
10/// module for python interface
11#[cfg(feature = "python")]
12mod python;
13
14pub use functions::{correlation, tissue};
15pub use launch::{launch_archs4_correlation, launch_archs4_tissue};
16pub use types::Species;
17
18#[cfg(feature = "python")]
19pub use python::python_archs4;