[package]
edition = "2021"
rust-version = "1.74"
name = "mcpcounter-rust"
version = "0.1.0"
build = false
exclude = [
".github/",
"benchmarks/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "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."
readme = "README.md"
keywords = [
"bioinformatics",
"deconvolution",
"immune",
"mcp-counter",
"rna-seq",
]
categories = ["science"]
license = "GPL-3.0-or-later"
repository = "https://github.com/sinmojito/MCPcounter-rust"
[features]
default = []
[lib]
name = "mcpcounter_rust"
path = "src/lib.rs"
[[example]]
name = "parity_realdata"
path = "examples/parity_realdata.rs"
[[example]]
name = "quickstart"
path = "examples/quickstart.rs"
[[test]]
name = "parity_mcp"
path = "tests/parity_mcp.rs"
[[test]]
name = "parity_mmcp"
path = "tests/parity_mmcp.rs"
[dependencies]