--- title: Further strategies for analyzing single-cell RNA-seq data author: - name: Aaron T. L. Lun affiliation: &CRUK Cancer Research UK Cambridge Institute, Li Ka Shing Centre, Robinson Way, Cambridge CB2 0RE, United Kingdom - name: Davis J. McCarthy affiliation: - &EMBL EMBL European Bioinformatics Institute, Wellcome Genome Campus, Hinxton, Cambridge CB10 1SD, United Kingdom - St Vincent's Institute of Medical Research, 41 Victoria Parade, Fitzroy, Victoria 3065, Australia - name: John C. Marioni affiliation: - *CRUK - *EMBL - Wellcome Trust Sanger Institute, Wellcome Genome Campus, Hinxton, Cambridge CB10 1SA, United Kingdom date: "`r Sys.Date()`" vignette: > %\VignetteIndexEntry{13. Further analysis strategies} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} output: BiocStyle::html_document: titlecaps: false toc_float: true bibliography: ref.bib --- ```{r style, echo=FALSE, results='hide', message=FALSE, cache=FALSE} library(BiocStyle) library(knitr) opts_chunk$set(error=FALSE, message=FALSE, warning=FALSE, cache=TRUE) opts_chunk$set(fig.asp=1) ``` # Overview Here, we describe a few additional analyses that can be performed with single-cell RNA sequencing data. This includes detection of significant correlations between genes and regressing out the effect of cell cycle from the gene expression matrix. # Identifying correlated gene pairs with Spearman's rho scRNA-seq data is commonly used to identify correlations between the expression profiles of different genes. This is quantified by computing Spearman's rho, which accommodates non-linear relationships in the expression values. Non-zero correlations between pairs of genes provide evidence for their co-regulation. However, the noise in the data requires some statistical analysis to determine whether a correlation is significantly non-zero. To demonstrate, we use the `correlatePairs` function to identify significant correlations between the various histocompatability antigens in the haematopoietic stem cell (HSC) Smart-seq2 dataset [@wilson2015combined]. Counts were obtained from NCBI GEO as a supplementary file using the accession number [GSE61533](http://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE61533), and are used to generate a `SingleCellExperiment` as shown below. ```{r} library(BiocFileCache) bfc <- BiocFileCache("raw_data", ask=FALSE) wilson.fname <- bfcrpath(bfc, file.path("ftp://ftp.ncbi.nlm.nih.gov/geo/series", "GSE61nnn/GSE61533/suppl/GSE61533_HTSEQ_count_results.xls.gz")) library(R.utils) wilson.name2 <- "GSE61533_HTSEQ_count_results.xls" gunzip(wilson.fname, destname=wilson.name2, remove=FALSE, overwrite=TRUE) library(readxl) all.counts <- read_excel(wilson.name2) gene.names <- all.counts$ID all.counts <- as.matrix(all.counts[,-1]) rownames(all.counts) <- gene.names library(SingleCellExperiment) sce.hsc <- SingleCellExperiment(list(counts=all.counts)) is.spike <- grepl("^ERCC", rownames(sce.hsc)) sce.hsc <- splitAltExps(sce.hsc, ifelse(is.spike, "ERCC", "gene")) library(scater) sce.hsc <- addPerCellQC(sce.hsc) spike.drop <- quickPerCellQC(colData(sce.hsc)) sce.hsc <- sce.hsc[,!spike.drop$discard] library(scran) sce.hsc <- computeSumFactors(sce.hsc) sce.hsc <- logNormCounts(sce.hsc) ``` The significance of each correlation is determined using a permutation test. For each pair of genes, the null hypothesis is that the expression profiles of two genes are independent. Shuffling the profiles and recalculating the correlation yields a null distribution that is used to obtain a _p_-value for each observed correlation value [@phipson2010permutation]. ```{r} set.seed(100) var.cor <- correlatePairs(sce.hsc, subset.row=grep("^H2-", rownames(sce.hsc))) head(var.cor) ``` Correction for multiple testing across many gene pairs is performed by controlling the FDR at 5%. ```{r} sig.cor <- var.cor$FDR <= 0.05 summary(sig.cor) ``` We can also compute correlations between specific pairs of genes, or between all pairs between two distinct sets of genes. The example below computes the correlation between _Fos_ and _Jun_, which dimerize to form the AP-1 transcription factor [@angel1991role]. ```{r} correlatePairs(sce.hsc, subset.row=cbind("Fos", "Jun")) ``` Examination of the expression profiles in Figure \@ref(fig:fosjuncorplot) confirms the presence of a modest correlation between these two genes. ```{r fosjuncorplot, fig.cap="Expression of _Fos_ plotted against the expression of _Jun_ for all cells in the HSC dataset."} library(scater) plotExpression(sce.hsc, features="Fos", x="Jun") ``` The use of `correlatePairs` is primarily intended to identify correlated gene pairs for validation studies. Obviously, non-zero correlations do not provide evidence for a direct regulatory interaction, let alone specify causality. To construct regulatory networks involving many genes, we suggest using dedicated packages such as `r Biocpkg("WCGNA")`. __Comments from Aaron:__ - We suggest only computing correlations between a subset of genes of interest, known either _a priori_ or empirically defined, e.g., as HVGs. Computing correlations across all genes will take too long; unnecessarily increase the severity of the multiple testing correction; and may prioritize strong but uninteresting correlations, e.g., between tightly co-regulated house-keeping genes. - The `correlateGenes()` function can be used on the output of `correlatePairs()` to return gene-centric output. This calculates a combined _p_-value [@simes1986improved] for each gene that indicates whether it is significantly correlated to any other gene. From a statistical perspective, this is a more natural approach to correcting for multiple testing when genes, rather than pairs of genes, are of interest. - The `Limited` field indicates whether the _p_-value was lower-bounded by the number of permutations. If this is `TRUE` for any non-significant gene at the chosen FDR threshold, consider increasing the number of permutations to improve power. # Comments on filtering by abundance Low-abundance genes are problematic as zero or near-zero counts do not contain much information for reliable statistical inference. In applications involving hypothesis testing, these genes typically do not provide enough evidence to reject the null hypothesis yet they still increase the severity of the multiple testing correction. The discreteness of the counts may also interfere with statistical procedures, e.g., by compromising the accuracy of continuous approximations. Thus, low-abundance genes are often removed in many RNA-seq analysis pipelines before the application of downstream methods. The "optimal" choice of filtering strategy depends on the downstream application. A more aggressive filter is usually required to remove discreteness and to avoid zeroes, e.g., for normalization purposes. By comparison, the filter statistic for hypothesis testing is mainly required to be independent of the test statistic under the null hypothesis [@bourgon2010independent]. Given these differences in priorities, we (or the relevant function) will filter at each step as appropriate, rather than applying a single filter for the entire analysis. For example, `computeSumFactors()` will apply a somewhat stringent filter based on the average count, while `trendVar()` will apply a relatively relaxed filter based on the average log-expression. Other applications will not do any abundance-based filtering at all (e.g., `denoisePCA()`) to preserve biological signal from lowly expressed genes. Nonetheless, if global filtering is desired, it is simple to achieve by simply subsetting the `SingleCellExperiment` object. The example below demonstrates how we _could_ remove genes with average counts less than 1 in the HSC dataset. The number of `TRUE` values in `demo.keep` corresponds to the number of retained rows/genes after filtering. ```{r} ave.counts <- calculateAverage(sce.hsc) demo.keep <- ave.counts >= 1 filtered.sce.hsc <- sce.hsc[demo.keep,] summary(demo.keep) ``` # Blocking on the cell cycle phase Cell cycle phase is usually uninteresting in studies focusing on other aspects of biology. However, the effects of cell cycle on the expression profile can mask other effects and interfere with the interpretation of the results. This cannot be avoided by simply removing cell cycle marker genes, as the cell cycle can affect a substantial number of other transcripts [@buettner2015computational]. Rather, more sophisticated strategies are required, one of which is demonstrated below using data from a study of T Helper 2 (T~H~2) cells [@mahata2014singlecell]. ```{r} library(BiocFileCache) bfc <- BiocFileCache("raw_data", ask = FALSE) mahata.fname <- bfcrpath(bfc, "http://www.nature.com/nbt/journal/v33/n2/extref/nbt.3102-S7.xlsx") ``` @buettner2015computational have already applied quality control and normalized the data, so we can use them directly as log-expression values (accessible as Supplementary Data 1 of https://dx.doi.org/10.1038/nbt.3102). ```{r} library(readxl) incoming <- as.data.frame(read_excel(mahata.fname, sheet=1)) rownames(incoming) <- incoming[,1] incoming <- incoming[,-1] incoming <- incoming[,!duplicated(colnames(incoming))] # Remove duplicated genes. sce.th2 <- SingleCellExperiment(list(logcounts=t(incoming))) ``` We empirically identify the cell cycle phase using the pair-based classifier in `cyclone`. The majority of cells in Figure \@ref(fig:phaseplotth2) seem to lie in G1 phase, with small numbers of cells in the other phases. ```{r phaseplotth2, message=FALSE, fig.cap="Cell cycle phase scores from applying the pair-based classifier on the T~H~2 dataset, where each point represents a cell."} library(org.Mm.eg.db) ensembl <- mapIds(org.Mm.eg.db, keys=rownames(sce.th2), keytype="SYMBOL", column="ENSEMBL") set.seed(100) mm.pairs <- readRDS(system.file("exdata", "mouse_cycle_markers.rds", package="scran")) assignments <- cyclone(sce.th2, mm.pairs, gene.names=ensembl, assay.type="logcounts") plot(assignments$score$G1, assignments$score$G2M, xlab="G1 score", ylab="G2/M score", pch=16) ``` We can block directly on the phase scores in downstream analyses. This is more graduated than using a strict assignment of each cell to a specific phase, as the magnitude of the score considers the uncertainty of the assignment. The phase covariates in the design matrix will absorb any phase-related effects on expression such that they will not affect estimation of the effects of other experimental factors. Users should also ensure that the phase score is not confounded with other factors of interest. For example, model fitting is not possible if all cells in one experimental condition are in one phase, and all cells in another condition are in a different phase. ```{r} design <- model.matrix(~ G1 + G2M, assignments$score) fit.block <- trendVar(sce.th2, design=design, parametric=TRUE, use.spikes=NA) dec.block <- decomposeVar(sce.th2, fit.block) library(limma) sce.th2.block <- sce.th2 assay(sce.th2.block, "corrected") <- removeBatchEffect( logcounts(sce.th2), covariates=design[,-1]) sce.th2.block <- denoisePCA(sce.th2.block, technical=dec.block, assay.type="corrected") dim(reducedDim(sce.th2.block, "PCA")) ``` The result of blocking on `design` is visualized with some PCA plots in Figure \@ref(fig:pcaplotth2). Before removal, the distribution of cells along the first two principal components is strongly associated with their G1 and G2/M scores. This is no longer the case after removal, which suggests that the cell cycle effect has been mitigated. ```{r pcaplotth2, fig.width=12, fig.asp=0.5, fig.cap="PCA plots before (left) and after (right) removal of the cell cycle effect in the T~H~2 dataset. Each cell is represented by a point with colour and size determined by the G1 and G2/M scores, respectively."} sce.th2$G1score <- sce.th2.block$G1score <- assignments$score$G1 sce.th2$G2Mscore <- sce.th2.block$G2Mscore <- assignments$score$G2M # Without blocking on phase score. fit <- trendVar(sce.th2, parametric=TRUE, use.spikes=NA) sce.th2 <- denoisePCA(sce.th2, technical=fit$trend) fontsize <- theme(axis.text=element_text(size=12), axis.title=element_text(size=16)) out <- plotReducedDim(sce.th2, use_dimred="PCA", ncomponents=2, colour_by="G1score", size_by="G2Mscore") + fontsize + ggtitle("Before removal") # After blocking on the phase score. out2 <- plotReducedDim(sce.th2.block, use_dimred="PCA", ncomponents=2, colour_by="G1score", size_by="G2Mscore") + fontsize + ggtitle("After removal") multiplot(out, out2, cols=2) ``` As an aside, this dataset contains cells at various stages of differentiation [@mahata2014singlecell]. This is an ideal use case for diffusion maps which perform dimensionality reduction along a continuous process. In Figure \@ref(fig:diffusionth2), cells are arranged along a trajectory in the low-dimensional space. The first diffusion component is likely to correspond to T~H~2 differentiation, given that a key regulator _Gata3_ [@zhu2006gata3] changes in expression from left to right. ```{r diffusionth2, fig.cap="A diffusion map for the T~H~2 dataset, where each cell is coloured by its expression of _Gata3_. A larger `sigma` is used compared to the default value to obtain a smoother plot."} plotDiffusionMap(sce.th2.block, colour_by="Gata3", run_args=list(use_dimred="PCA", sigma=25)) + fontsize ``` # Concluding remarks All software packages used in this workflow are publicly available from the Comprehensive R Archive Network (https://cran.r-project.org) or the Bioconductor project (http://bioconductor.org). The specific version numbers of the packages used are shown below, along with the version of the R installation. ```{r} sessionInfo() ``` # References