Overview
SCENT is an R package for estimating differentiation potency of single cells from scRNA-Seq data using signaling entropy on protein-protein interaction (PPI) networks. The package implements the computational framework described in Teschendorff & Enver (2017), with performance optimizations through C++ (Rcpp/RcppArmadillo).
π Documentation: https://zaoqu-liu.github.io/SCENT/
Theoretical Background
Signaling Entropy Rate (SR)
The differentiation potency of a cell can be quantified by the signaling entropy rate, which measures the βrandomnessβ of information flow through the protein interaction network. The mathematical formulation is:
where:
- : Stationary distribution at gene , computed as
- : Local entropy at gene , defined as
- : Transition probability from gene to , given by
- : Maximum entropy rate, equal to where is the largest eigenvalue of
Installation
From R-Universe (Recommended)
install.packages("SCENT", repos = c(
"https://zaoqu-liu.r-universe.dev",
"https://cloud.r-project.org"
))From GitHub
# Install dependencies
install.packages(c("Rcpp", "RcppArmadillo", "Matrix", "igraph"))
# Install SCENT
devtools::install_github("Zaoqu-Liu/SCENT")System Requirements
| Platform | Requirement |
|---|---|
| macOS | xcode-select --install |
| Windows | Rtools |
| Linux | Standard build tools (gcc, g++) |
Quick Start
library(SCENT)
# Load built-in PPI network (8,434 genes, 303,600 interactions)
data(net13Jun12.m)
# Load your expression matrix (genes Γ cells)
# For Seurat objects: exp <- GetAssayData(seurat_obj, layer = "data")
# Method 1: CCAT (fast approximation)
ccat_scores <- CompCCAT(exp, net13Jun12.m)
# Method 2: SR (full computation)
integ <- DoIntegPPI(exp, net13Jun12.m)
sr_result <- CompSRana(integ, local = TRUE)
# Access results
sr_scores <- sr_result$SR # Global entropy rate per cell
local_entropy <- sr_result$locS # Gene-level local entropy
stationary <- sr_result$inv # Stationary distributionMethods Comparison
| Method | Algorithm | Speed | Accuracy | Use Case |
|---|---|---|---|---|
| SR | Full entropy computation | ~5s / 100 cells | Gold standard | Publication, validation |
| CCAT | Correlation with degree | ~0.1s / 100 cells | Approximation (r β 0.78) | Screening, large datasets |
Tutorials
| Tutorial | Description |
|---|---|
| Quick Start | Basic usage and workflow |
| Algorithm | Mathematical background and derivation |
| Visualization | Publication-quality figures |
| Benchmark | Performance analysis |
Citation
If you use SCENT in your research, please cite:
Teschendorff AE, Enver T. Single-cell entropy for accurate estimation of differentiation potency from a cellβs transcriptome. Nature Communications. 2017;8:15599. doi:[10.1038/ncomms15599](https://doi.org/10.1038/ncomms15599)
Links
- π¦ R-Universe: https://zaoqu-liu.r-universe.dev/SCENT
- π Documentation: https://zaoqu-liu.github.io/SCENT/
- π Issues: https://github.com/Zaoqu-Liu/SCENT/issues
- π Original Paper: Nature Communications 2017