tikhonov 0.1.0

Harmony2 single-cell data integration (pure Rust)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Tikhonov: pure-Rust Harmony2 single-cell integration.
#![forbid(unsafe_code)]

pub mod cluster;
pub mod config;
pub mod correct;
pub mod embed;
pub mod error;
pub mod harmony;
pub mod history;
pub mod objective;
pub mod phi;

pub use config::HarmonyConfig;
pub use error::HarmonyError;
pub use harmony::{HarmonyResult, run_harmony};
pub use history::{HarmonyHistory, HistoryEntry};
pub use phi::Phi;