--- title: "Overview of the sccomp package" author: "Stefano Mangiola" date: "`r Sys.Date()`" package: sccomp output: BiocStyle::html_document: toc_float: true vignette: > %\VignetteEngine{knitr::knitr} %\VignetteIndexEntry{Overview of the sccomp package} %\usepackage[UTF-8]{inputenc} --- [![Lifecycle:maturing](https://img.shields.io/badge/lifecycle-maturing-blue.svg)](https://www.tidyverse.org/lifecycle/#maturing) [![R build status](https://github.com/stemangiola/tidyseurat/workflows/R-CMD-check/badge.svg)](https://github.com/stemangiola/tidyseurat/actions/) # Sccomp is a generalised method for differential composition and variability analyses. ## Characteristics - Modelling counts - Modelling proportionality - Modelling cell-type specific variability - Cell-type information share for variability shrinkage - Testing differential variability - Probabilistic outlier identification - Cross-dataset learning (hyperpriors). # Installation **Bioconductor** ```{r eval=FALSE} if (!requireNamespace("BiocManager")) install.packages("BiocManager") BiocManager::install("sccomp") ``` **Github** ```{r eval=FALSE} devtools::install_github("stemangiola/sccomp") ``` # Analysis ```{r echo=FALSE, message=FALSE, warning=FALSE} library(dplyr) library(sccomp) library(ggplot2) library(forcats) library(tidyr) library(rstan) 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 ### From Seurat, SingleCellExperiment, metadata objects ```{r eval=FALSE} single_cell_object |> sccomp_glm( formula_composition = ~ type, .sample = sample, .cell_group = cell_group, bimodal_mean_variability_association = TRUE, cores = 1 ) ``` ### From counts ```{r, message=FALSE, warning=FALSE} counts_obj |> sccomp_glm( formula_composition = ~ type, .sample = sample, .cell_group = cell_group, .count = count, bimodal_mean_variability_association = TRUE, cores = 1 ) ``` Of the output table, the estimate columns start with the prefix `c_` indicate `composition`, or with `v_` indicate `variability` (when formula_variability is set). ## Contrasts ```{r, message=FALSE, warning=FALSE} seurat_obj |> sccomp_glm( formula_composition = ~ 0 + type, contrasts = c("typecancer - typehealthy", "typehealthy - typecancer"), .sample = sample, .cell_group = cell_group, bimodal_mean_variability_association = TRUE, cores = 1 ) ``` ## Categorical factor (e.g. 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 comparisons `check_outliers` must be set to FALSE 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, eval=FALSE, message=FALSE, warning=FALSE} library(loo) # Fit first model model_with_factor_association = seurat_obj |> sccomp_glm( formula_composition = ~ type, .sample = sample, .cell_group = cell_group, check_outliers = FALSE, bimodal_mean_variability_association = TRUE, cores = 1, enable_loo = TRUE ) # Fit second model model_without_association = seurat_obj |> sccomp_glm( formula_composition = ~ 1, .sample = sample, .cell_group = cell_group, check_outliers = FALSE, bimodal_mean_variability_association = TRUE, cores = 1 , enable_loo = TRUE ) # Compare models loo_compare( model_with_factor_association |> attr("fit") |> loo(), model_without_association |> attr("fit") |> loo() ) ``` ## Differential variability, binary factor We can model the cell-group variability also dependent on the type, and so test differences in variability ```{r, message=FALSE, warning=FALSE} res = seurat_obj |> sccomp_glm( formula_composition = ~ type, formula_variability = ~ type, .sample = sample, .cell_group = cell_group, bimodal_mean_variability_association = TRUE, cores = 1 ) res ``` # Suggested settings ## 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). # Visualisation ## Summary plots ```{r, out.height="200%"} plots = plot_summary(res) ``` A plot of group proportion, faceted by groups. The blue boxplots represent the posterior predictive check. If the model is likely to be descriptively adequate to the data, the blue box plot should roughly overlay with the black box plot, which represents the observed data. The outliers are coloured in red. A box plot will be returned for every (discrete) covariate present in `formula_composition`. The colour coding represents the significant associations for composition and/or variability. ```{r} plots$boxplot ``` 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 bigger than the minimal effect according to the 95% credible interval. Facets represent the covariates in the model. ```{r} plots$credible_intervals_1D ``` ## Visualisation of the MCMC chains from the posterior distribution 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} res %>% attr("fit") %>% rstan::traceplot("beta[2,1]") ``` Plot 1D significance plot ```{r} plots = plot_summary(res) 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. The for each category of interest, the composition and variability effects should be generally uncorrelated. ```{r} plots$credible_intervals_2D ``` ```{r} sessionInfo() ```