all_times <- list() # store the time for each chunk knitr::knit_hooks$set(time_it = local({ now <- NULL function(before, options) { if (before) { now <<- Sys.time() } else { res <- difftime(Sys.time(), now, units = "secs") all_times[[options$label]] <<- res } } })) knitr::opts_chunk$set( tidy = TRUE, tidy.opts = list(width.cutoff = 95), message = FALSE, warning = FALSE, time_it = TRUE, error = TRUE )
options(SeuratData.repo.use = "http://satijalab04.nygenome.org")
This vignette highlights some example workflows for performing differential expression in Seurat. For demonstration purposes, we will be using the 2,700 PBMC object that is available via the SeuratData package).
library(Seurat) library(SeuratData) pbmc <- LoadData("pbmc3k", type = "pbmc3k.final")
The bulk of Seurat's differential expression features can be accessed through the FindMarkers()
function. As a default, Seurat performs differential expression based on the non-parametric Wilcoxon rank sum test. This replaces the previous default test ('bimod'). To test for differential expression between two specific groups of cells, specify the ident.1
and ident.2
parameters.
# list options for groups to perform differential expression on levels(pbmc) # Find differentially expressed features between CD14+ and FCGR3A+ Monocytes monocyte.de.markers <- FindMarkers(pbmc, ident.1 = "CD14+ Mono", ident.2 = "FCGR3A+ Mono") # view results head(monocyte.de.markers)
The results data frame has the following columns :
If the ident.2
parameter is omitted or set to NULL, FindMarkers()
will test for differentially expressed features between the group specified by ident.1
and all other cells.
# Find differentially expressed features between CD14+ Monocytes and all other cells, only search for positive markers monocyte.de.markers <- FindMarkers(pbmc, ident.1 = "CD14+ Mono", ident.2 = NULL, only.pos = TRUE) # view results head(monocyte.de.markers)
To increase the speed of marker discovery, particularly for large datasets, Seurat allows for pre-filtering of features or cells. For example, features that are very infrequently detected in either group of cells, or features that are expressed at similar average levels, are unlikely to be differentially expressed. Example use cases of the min.pct
, logfc.threshold
, min.diff.pct
, and max.cells.per.ident
parameters are demonstrated below.
# Pre-filter features that are detected at <50% frequency in either CD14+ Monocytes or FCGR3A+ Monocytes head(FindMarkers(pbmc, ident.1 = "CD14+ Mono", ident.2 = "FCGR3A+ Mono", min.pct = 0.5)) # Pre-filter features that have less than a two-fold change between the average expression of CD14+ Monocytes vs FCGR3A+ Monocytes head(FindMarkers(pbmc, ident.1 = "CD14+ Mono", ident.2 = "FCGR3A+ Mono", logfc.threshold = log(2))) # Pre-filter features whose detection percentages across the two groups are similar (within 0.25) head(FindMarkers(pbmc, ident.1 = "CD14+ Mono", ident.2 = "FCGR3A+ Mono", min.diff.pct = 0.25)) # Increasing min.pct, logfc.threshold, and min.diff.pct, will increase the speed of DE testing, but could also miss features that are prefiltered # Subsample each group to a maximum of 200 cells. Can be very useful for large clusters, or computationally-intensive DE tests head(FindMarkers(pbmc, ident.1 = "CD14+ Mono", ident.2 = "FCGR3A+ Mono", max.cells.per.ident = 200))
The following differential expression tests are currently supported:
For MAST and DESeq2, please ensure that these packages are installed separately in order to use them as part of Seurat. Once installed, use the test.use
parameter can be used to specify which DE test to use.
# necessary to get MAST to work properly library(SingleCellExperiment)
# Test for DE features using the MAST package head(FindMarkers(pbmc, ident.1 = "CD14+ Mono", ident.2 = "FCGR3A+ Mono", test.use = "MAST")) # Test for DE features using the DESeq2 package. Throws an error if DESeq2 has not already been installed # Note that the DESeq2 workflows can be computationally intensive for large datasets, but are incompatible with some feature pre-filtering options # We therefore suggest initially limiting the number of cells used for testing head(FindMarkers(pbmc, ident.1 = "CD14+ Mono", ident.2 = "FCGR3A+ Mono", test.use = "DESeq2", max.cells.per.ident = 50))
We thank the authors of the MAST and DESeq2 packages for their kind assistance and advice. We also point users to the following study by Charlotte Soneson and Mark Robinson, which performs careful and extensive evaluation of methods for single cell differential expression testing.
write.csv(x = t(as.data.frame(all_times)), file = "../output/timings/seurat5_de_vignette_times.csv")
Session Info
sessionInfo()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.