//! # transcriptomic-rs
//!
//! Expression matrix assembly and normalization → Arrow `RecordBatches`.
//!
//! ## Quick start
//!
//! ```rust,no_run
//! use geo_soft_rs::SoftReader;
//! use transcriptomic_rs::MatrixBuilder;
//!
//! let reader = SoftReader::open("GSE65682_family.soft.gz")?;
//! let matrix = MatrixBuilder::new().from_soft(reader)?;
//! let normalized = transcriptomic_rs::Normalize::log2(&matrix);
//! # Ok::<(), Box<dyn std::error::Error>>(())
//! ```
pub use ;
pub use ;
pub use Normalize;