---
title: "sccomp: Differential Composition and Variability Analysis for Single-Cell Data"
author: "Stefano Mangiola"
date: "`r Sys.Date()`"
package: sccomp
output:
prettydoc::html_pretty:
theme: cayman
toc: yes
toc_depth: 2
number_sections: yes
fig_caption: yes
df_print: paged
abstract: >
Sccomp is a comprehensive R package for differential composition and variability analysis in single-cell RNA sequencing, CyTOF, and microbiome data. It provides robust Bayesian modeling with outlier detection, random effects, and advanced statistical methods for cell type proportion analysis. Perfect for cancer research, immunology, and single-cell genomics.
keywords: "single-cell RNA-seq, differential composition analysis, cell type proportions, Bayesian modeling, scRNA-seq, CyTOF, microbiome analysis, statistical modeling, R package, bioinformatics, genomics, cell type variability, outlier detection, random effects modeling"
vignette: >
%\VignetteIndexEntry{sccomp: Differential Composition and Variability Analysis for Single-Cell Data}
%\VignetteEngine{knitr::rmarkdown}
%\VignetteEncoding{UTF-8}
knit: >
(function(x, ...){
proj_root <- rprojroot::find_package_root_file() |> normalizePath()
rmarkdown::render(
x,
output_format = "html_document",
params = list(
demo_metadata = TRUE
)
)
rmarkdown::render(
x,
output_file = "README.md",
output_format = "github_document",
output_dir = proj_root,
knit_root_dir = proj_root,
params = list(
demo_metadata = FALSE
)
)
})
---
[](https://www.tidyverse.org/lifecycle/#maturing) [](https://github.com/stemangiola/sccomp/actions/)
#
# sccomp: Advanced Differential Composition and Variability Analysis for Single-Cell Data
**sccomp** is a powerful R package designed for comprehensive differential composition and variability analysis in single-cell genomics, proteomics, and microbiomics data. This cutting-edge tool provides robust Bayesian modeling capabilities for analyzing cell type proportions and variability across different experimental conditions.
## What is sccomp?
**sccomp** (Single-Cell Composition Analysis) is a specialized R package that addresses the critical need for advanced statistical methods in single-cell data analysis. It enables researchers to:
- **Analyze cell type proportions** with high statistical rigor
- **Detect differential variability** between experimental conditions
- **Identify outliers** using probabilistic methods
- **Model complex experimental designs** with random effects
- **Handle multiple data types** including scRNA-seq, CyTOF, and microbiome data
## Key Applications
- Single-Cell RNA Sequencing (scRNA-seq)
- CyTOF (Cytometry by Time-of-Flight)
- Microbiome Analysis
## Why sccomp?
For cellular omic data, no method for differential variability analysis exists, and methods for differential composition analysis only take a few fundamental data properties into account. Here we introduce **sccomp**, a generalised method for differential composition and variability analyses capable of jointly modelling data count distribution, compositionality, group-specific variability, and proportion mean-variability association, while being robust to outliers.
**sccomp** is an extensive analysis framework that allows realistic data simulation and cross-study knowledge transfer. We demonstrate that mean-variability association is ubiquitous across technologies, highlighting the inadequacy of the very popular Dirichlet-multinomial modeling and providing essential principles for differential variability analysis.
### Comprehensive Method Comparison
- **I**: Data are modelled as counts.
- **II**: Group proportions are modelled as compositional.
- **III**: The proportion variability is modelled as cell-type specific.
- **IV**: Information sharing across cell types, mean–variability association.
- **V**: Outlier detection or robustness.
- **VI**: Differential variability analysis.
- **VII** Mixed effect modelling
- **VIII** Removal unwanted effects
| Method | Year | Model | I | II | III | IV | V | VI | VII | VIII |
|--------------|------|------------------------------|---|----|-----|----|---|----|----|----|
| **sccomp** | 2023 | Sum-constrained Beta-binomial | ● | ● | ● | ● | ● | ● | ● | ● |
| **scCODA** | 2021 | Dirichlet-multinomial | ● | ● | | | | | | |
| **quasi-binom.** | 2021 | Quasi-binomial | ● | | ● | | | | | |
| **rlm** | 2021 | Robust-log-linear | | ● | | | ● | | | |
| **propeller** | 2021 | Logit-linear + limma | | ● | ● | ● | | | | |
| **ANCOM-BC** | 2020 | Log-linear | | ● | ● | | | | | |
| **corncob** | 2020 | Beta-binomial | ● | | ● | | | | | |
| **scDC** | 2019 | Log-linear | | ● | ● | | | | | |
| **dmbvs** | 2017 | Dirichlet-multinomial | ● | ● | | | | | | |
| **MixMC** | 2016 | Zero-inflated Log-linear | | ● | ● | | | | | |
| **ALDEx2** | 2014 | Dirichlet-multinomial | ● | ● | | | | | | |
### Scientific Citation
Mangiola, Stefano, Alexandra J. Roth-Schulze, Marie Trussart, Enrique Zozaya-Valdés, Mengyao Ma, Zijie Gao, Alan F. Rubin, Terence P. Speed, Heejung Shim, and Anthony T. Papenfuss. 2023. "Sccomp: Robust Differential Composition and Variability Analysis for Single-Cell Data." Proceedings of the National Academy of Sciences of the United States of America 120 (33): e2203828120. https://doi.org/10.1073/pnas.2203828120
[PNAS - sccomp: Robust differential composition and variability analysis for single-cell data](https://www.pnas.org/doi/full/10.1073/pnas.2203828120)
### Talk
# Installation Guide
`sccomp` is based on `cmdstanr` which provides the latest version of `cmdstan` the Bayesian modelling tool. `cmdstanr` is not on CRAN, so we need to have 3 simple step process (that will be prompted to the user is forgot).
1. R installation of `sccomp`
2. R installation of `cmdstanr`
3. `cmdstanr` call to `cmdstan` installation
**Bioconductor**
```{r eval=FALSE, message=FALSE}
if (!requireNamespace("BiocManager")) install.packages("BiocManager")
# Step 1
BiocManager::install("sccomp")
# Step 2
install.packages("cmdstanr", repos = c("https://stan-dev.r-universe.dev/", getOption("repos")))
# Step 3
cmdstanr::check_cmdstan_toolchain(fix = TRUE) # Just checking system setting
cmdstanr::install_cmdstan()
```
**Github**
```{r eval=FALSE, message=FALSE}
# Step 1
devtools::install_github("MangiolaLaboratory/sccomp")
# Step 2
install.packages("cmdstanr", repos = c("https://stan-dev.r-universe.dev/", getOption("repos")))
# Step 3
cmdstanr::check_cmdstan_toolchain(fix = TRUE) # Just checking system setting
cmdstanr::install_cmdstan()
```
## Core Functions
Function | Description
------------ | -------------
`sccomp_estimate` | Fit the model onto the data, and estimate the coefficients
`sccomp_remove_outliers` | Identify outliers probabilistically based on the model fit, and exclude them from the estimation
`sccomp_test` | Calculate the probability that the coefficients are outside the H0 interval (i.e. test_composition_above_logit_fold_change)
`sccomp_replicate` | Simulate data from the model, or part of the model
`sccomp_predict` | Predicts proportions, based on the model, or part of the model
`sccomp_remove_unwanted_effects` | Removes the variability for unwanted factors
`plot` | Plots summary plots to assess significance
# Analysis Tutorial
```{r message=FALSE, warning=FALSE}
library(dplyr)
library(sccomp)
library(ggplot2)
library(forcats)
library(tidyr)
data("seurat_obj")
data("sce_obj")
data("counts_obj")
```
`sccomp` can model changes in composition and variability. By default, the formula for variability is either `~1`, which assumes that the
cell-group variability is independent of any covariate or `~ factor_of_interest`, which assumes that the model is dependent on the
factor of interest only. The variability model must be a subset of the model for composition.
## Binary Factor Analysis
Of the output table, the estimate columns start with the prefix `c_` indicate `composition`, or with `v_` indicate `variability` (when formula_variability is set).
### From Seurat, SingleCellExperiment, metadata objects
```{r eval=FALSE, message=FALSE}
sccomp_result =
sce_obj |>
sccomp_estimate(
formula_composition = ~ type,
sample = "sample",
cell_group = "cell_group",
cores = 1,
verbose = FALSE
) |>
sccomp_test()
```
### From counts
```{r, message=FALSE, warning=FALSE, eval = instantiate::stan_cmdstan_exists()}
sccomp_result =
counts_obj |>
sccomp_estimate(
formula_composition = ~ type,
sample = "sample",
cell_group = "cell_group",
abundance = "count",
cores = 1, verbose = FALSE
) |>
sccomp_test()
```
Here you see the results of the fit, the effects of the factor on composition and variability. You also can see the uncertainty around those effects.
The output is a tibble containing the **Following columns**
- `cell_group` - The cell groups being tested.
- `parameter` - The parameter being estimated from the design matrix described by the input `formula_composition` and `formula_variability`.
- `factor` - The covariate factor in the formula, if applicable (e.g., not present for Intercept or contrasts).
- `c_lower` - Lower (2.5%) quantile of the posterior distribution for a composition (c) parameter.
- `c_effect` - Mean of the posterior distribution for a composition (c) parameter.
- `c_upper` - Upper (97.5%) quantile of the posterior distribution for a composition (c) parameter.
- `c_pH0` - Probability of the null hypothesis (no difference) for a composition (c). This is not a p-value.
- `c_FDR` - False-discovery rate of the null hypothesis for a composition (c).
- `v_lower` - Lower (2.5%) quantile of the posterior distribution for a variability (v) parameter.
- `v_effect` - Mean of the posterior distribution for a variability (v) parameter.
- `v_upper` - Upper (97.5%) quantile of the posterior distribution for a variability (v) parameter.
- `v_pH0` - Probability of the null hypothesis for a variability (v).
- `v_FDR` - False-discovery rate of the null hypothesis for a variability (v).
- `count_data` - Nested input count data.
```{r, eval = instantiate::stan_cmdstan_exists(), message=FALSE}
sccomp_result
```
## Outlier Identification
`sccomp` can identify outliers probabilistically and exclude them from the estimation.
```{r, message=FALSE, warning=FALSE, eval = instantiate::stan_cmdstan_exists()}
sccomp_result =
counts_obj |>
sccomp_estimate(
formula_composition = ~ type,
sample = "sample",
cell_group = "cell_group",
abundance = "count",
cores = 1, verbose = FALSE
) |>
# max_sampling_iterations is used her to not exceed the maximum file size for GitHub action of 100Mb
sccomp_remove_outliers(cores = 1, verbose = FALSE, max_sampling_iterations = 2000) |> # Optional
sccomp_test()
```
## Visualization and Summary Plots
A plot of group proportions, faceted by groups. The blue boxplots represent the posterior predictive check. If the model is descriptively adequate for the data, the blue boxplots should roughly overlay the black boxplots, which represent the observed data. The outliers are coloured in red. A boxplot will be returned for every (discrete) covariate present in formula_composition. The colour coding represents the significant associations for composition and/or variability.
```{r, eval = instantiate::stan_cmdstan_exists(), message=FALSE}
sccomp_result |>
sccomp_boxplot(factor = "type")
```
You can plot proportions adjusted for unwanted effects. This is helpful especially for complex models, where multiple factors can significantly impact the proportions.
```{r, eval = instantiate::stan_cmdstan_exists(), message=FALSE}
sccomp_result |>
sccomp_boxplot(factor = "type", remove_unwanted_effects = TRUE)
```
A plot of estimates of differential composition (c_) on the x-axis and differential variability (v_) on the y-axis. The error bars represent 95% credible intervals. The dashed lines represent the minimal effect that the hypothesis test is based on. An effect is labelled as significant if it exceeds the minimal effect according to the 95% credible interval. Facets represent the covariates in the model.
```{r, eval = instantiate::stan_cmdstan_exists(), message=FALSE}
sccomp_result |>
plot_1D_intervals()
```
We can plot the relationship between abundance and variability. As we can see below, they are positively correlated. sccomp models this relationship to obtain a shrinkage effect on the estimates of both the abundance and the variability. This shrinkage is adaptive as it is modelled jointly, thanks to Bayesian inference.
```{r, eval = instantiate::stan_cmdstan_exists(), message=FALSE}
sccomp_result |>
plot_2D_intervals()
```
You can produce the series of plots calling the `plot` method.
```{r, out.height="200%", eval=FALSE, message=FALSE}
sccomp_result |> plot()
```
## Model Proportions Directly (e.g. from deconvolution)
**Note:** If counts are available, we strongly discourage the use of proportions, as an important source of uncertainty (i.e., for rare groups/cell types) is not modeled.
The use of proportions is better suited for modelling deconvolution results (e.g., of bulk RNA data), in which case counts are not available.
Proportions should be greater than 0. Assuming that zeros derive from a precision threshold (e.g., deconvolution), zeros are converted to the smallest non-zero value.
```{r, message=FALSE, warning=FALSE, eval = instantiate::stan_cmdstan_exists()}
sccomp_result =
counts_obj |>
sccomp_estimate(
formula_composition = ~ type,
sample = "sample",
cell_group = "cell_group",
abundance = "proportion",
cores = 1, verbose = FALSE
) |>
sccomp_test()
```
## Continuous Factor Analysis
`sccomp` is able to fit arbitrary complex models. In this example we have a continuous and binary covariate.
```{r, eval = instantiate::stan_cmdstan_exists(), message=FALSE}
res =
seurat_obj |>
sccomp_estimate(
formula_composition = ~ type + continuous_covariate,
sample = "sample",
cell_group = "cell_group",
cores = 1, verbose=FALSE
)
res
```
## Random Effect Modeling (Mixed-Effect Modeling)
`sccomp` supports multilevel modeling by allowing the inclusion of random effects in the compositional and variability formulas. This is particularly useful when your data has hierarchical or grouped structures, such as measurements nested within subjects, batches, or experimental units. By incorporating random effects, sccomp can account for variability at different levels of your data, improving model fit and inference accuracy.
### Random Intercept Model
In this example, we demonstrate how to fit a random intercept model using sccomp. We'll model the cell-type proportions with both fixed effects (e.g., treatment) and random effects (e.g., subject-specific variability).
Here is the input data
```{r, message=FALSE}
seurat_obj[[]] |> as_tibble()
```
```{r, eval = instantiate::stan_cmdstan_exists(), message=FALSE}
res =
seurat_obj |>
sccomp_estimate(
formula_composition = ~ type + (1 | group__),
sample = "sample",
cell_group = "cell_group",
bimodal_mean_variability_association = TRUE,
cores = 1, verbose = FALSE
)
res
```
### Random Effect Model (random slopes)
`sccomp` can model random slopes. We provide an example below.
```{r, eval = instantiate::stan_cmdstan_exists(), message=FALSE}
res =
seurat_obj |>
sccomp_estimate(
formula_composition = ~ type + (type | group__),
sample = "sample",
cell_group = "cell_group",
bimodal_mean_variability_association = TRUE,
cores = 1, verbose = FALSE
)
res
```
### Nested Random Effects
If you have a more complex hierarchy, such as measurements nested within subjects and subjects nested within batches, you can include multiple grouping variables. Here `group2__` is nested within `group__`.
```{r, eval = instantiate::stan_cmdstan_exists(), message=FALSE}
res =
seurat_obj |>
sccomp_estimate(
formula_composition = ~ type + (type | group__) + (1 | group2__),
sample = "sample",
cell_group = "cell_group",
bimodal_mean_variability_association = TRUE,
cores = 1, verbose = FALSE
)
res
```
## Result Interpretation and Communication
The estimated effects are expressed in the unconstrained space of the parameters, similar to differential expression analysis that expresses changes in terms of log fold change. However, for differences in proportion, logit fold change must be used, which is harder to interpret and understand.
Therefore, we provide a more intuitive proportional fold change that can be more easily understood. However, these cannot be used to infer significance (use sccomp_test() instead), and a lot of care must be taken given the nonlinearity of these measures (a 1-fold increase from 0.0001 to 0.0002 carries a different weight than a 1-fold increase from 0.4 to 0.8).
From your estimates, you can specify which effects you are interested in (this can be a subset of the full model if you wish to exclude unwanted effects), and the two points you would like to compare.
In the case of a categorical variable, the starting and ending points are categories.
```{r, eval = instantiate::stan_cmdstan_exists(), message=FALSE}
res |>
sccomp_proportional_fold_change(
formula_composition = ~ type,
from = "healthy",
to = "cancer"
) |>
select(cell_group, statement)
```
## Contrasts Analysis
```{r, message=FALSE, warning=FALSE, eval = instantiate::stan_cmdstan_exists()}
seurat_obj |>
sccomp_estimate(
formula_composition = ~ 0 + type,
sample = "sample",
cell_group = "cell_group",
cores = 1, verbose = FALSE
) |>
sccomp_test( contrasts = c("typecancer - typehealthy", "typehealthy - typecancer"))
```
## Categorical Factor Analysis (Bayesian ANOVA)
This is achieved through model comparison with `loo`. In the following example, the model with association with factors better fits the data compared to the baseline model with no factor association. For model comparisons `sccomp_remove_outliers()` must not be executed as the leave-one-out must work with the same amount of data, while outlier elimination does not guarantee it.
If `elpd_diff` is away from zero of \> 5 `se_diff` difference of 5, we are confident that a model is better than the other [reference](https://discourse.mc-stan.org/t/interpreting-elpd-diff-loo-package/1628/2?u=stemangiola).
In this case, -79.9 / 11.5 = -6.9, therefore we can conclude that model one, the one with factor association, is better than model two.
```{r, message=FALSE, warning=FALSE, eval = instantiate::stan_cmdstan_exists()}
library(loo)
# Fit first model
model_with_factor_association =
seurat_obj |>
sccomp_estimate(
formula_composition = ~ type,
sample = "sample",
cell_group = "cell_group",
inference_method = "hmc",
enable_loo = TRUE,
verbose = FALSE
)
# Fit second model
model_without_association =
seurat_obj |>
sccomp_estimate(
formula_composition = ~ 1,
sample = "sample",
cell_group = "cell_group",
inference_method = "hmc",
enable_loo = TRUE,
verbose = FALSE
)
# Compare models
loo_compare(
attr(model_with_factor_association, "fit")$loo(),
attr(model_without_association, "fit")$loo()
)
```
## Differential Variability Analysis
We can model the cell-group variability also dependent on the type, and so test differences in variability
```{r, message=FALSE, warning=FALSE, eval = instantiate::stan_cmdstan_exists()}
res =
seurat_obj |>
sccomp_estimate(
formula_composition = ~ type,
formula_variability = ~ type,
sample = "sample",
cell_group = "cell_group",
cores = 1, verbose = FALSE
)
res
```
**Plot 1D significance plot**
```{r, eval = instantiate::stan_cmdstan_exists(), message=FALSE}
plots = res |> sccomp_test() |> plot()
plots$credible_intervals_1D
```
**Plot 2D significance plot** Data points are cell groups. Error bars are the 95% credible interval. The dashed lines represent the default threshold fold change for which the probabilities (c_pH0, v_pH0) are calculated. pH0 of 0 represent the rejection of the null hypothesis that no effect is observed.
This plot is provided only if differential variability has been tested. The differential variability estimates are reliable only if the linear association between mean and variability for `(intercept)` (left-hand side facet) is satisfied. A scatterplot (besides the Intercept) is provided for each category of interest. For each category of interest, the composition and variability effects should be generally uncorrelated.
```{r, eval = instantiate::stan_cmdstan_exists(), message=FALSE}
plots$credible_intervals_2D
```
# Recommended Settings for Different Data Types
## For Single-Cell RNA Sequencing
We recommend setting `bimodal_mean_variability_association = TRUE`. The bimodality of the mean-variability association can be confirmed from the plots\$credible_intervals_2D (see below).
## For CyTOF and Microbiome Data
We recommend setting `bimodal_mean_variability_association = FALSE` (Default).
## MCMC Chain Visualization
It is possible to directly evaluate the posterior distribution. In this example, we plot the Monte Carlo chain for the slope parameter of the
first cell type. We can see that it has converged and is negative with probability 1.
```{r, eval = instantiate::stan_cmdstan_exists(), message=FALSE}
library(cmdstanr)
library(posterior)
library(bayesplot)
# Assuming res contains the fit object from cmdstanr
fit <- res |> attr("fit")
# Extract draws for 'beta[2,1]'
draws <- as_draws_array(fit$draws("beta[2,1]"))
# Create a traceplot for 'beta[2,1]'
mcmc_trace(draws, pars = "beta[2,1]") + theme_bw()
```
```{r, message=FALSE}
sessionInfo()
```