mcpcounter-rust 0.1.0

Pure-Rust port of the MCPcounter cell-population quantification methods: MCP-counter (human) and mMCP-counter (mouse), validated for numeric parity against the original R implementations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! `mcpcounter-rust`: a pure-Rust port of the MCPcounter cell-population
//! quantification methods — MCP-counter (human) and mMCP-counter (mouse) —
//! validated for numeric parity against the original R implementations.
//!
//! Built with Claude Code (Anthropic). See the README for the AI-assistance
//! disclosure and per-method licensing.

pub mod io;
pub mod matrix;
pub mod mcpcounter;
pub mod mmcpcounter;
pub mod result;
pub mod stats;

pub use matrix::ExprMatrix;
pub use mcpcounter::{estimate as mcp_counter, FeaturesType};
pub use mmcpcounter::{estimate as mmcp_counter, GenomeVersion, MurineFeaturesType};
pub use result::DeconvResult;