Skip to main content

mcpcounter_rust/
lib.rs

1//! `mcpcounter-rust`: a pure-Rust port of the MCPcounter cell-population
2//! quantification methods — MCP-counter (human) and mMCP-counter (mouse) —
3//! validated for numeric parity against the original R implementations.
4//!
5//! Built with Claude Code (Anthropic). See the README for the AI-assistance
6//! disclosure and per-method licensing.
7
8pub mod io;
9pub mod matrix;
10pub mod mcpcounter;
11pub mod mmcpcounter;
12pub mod result;
13pub mod stats;
14
15pub use matrix::ExprMatrix;
16pub use mcpcounter::{estimate as mcp_counter, FeaturesType};
17pub use mmcpcounter::{estimate as mmcp_counter, GenomeVersion, MurineFeaturesType};
18pub use result::DeconvResult;