In this workflow, we examine a heterogeneous dataset from a study of cell types in the mouse brain (Zeisel et al. 2015). This contains approximately 3000 cells of varying types such as oligodendrocytes, microglia and neurons. Individual cells were isolated using the Fluidigm C1 microfluidics system (Pollen et al. 2014) and library preparation was performed on each cell using a UMI-based protocol. After sequencing, expression was quantified by counting the number of UMIs mapped to each gene. Count data for all endogenous genes, mitochondrial genes and spike-in transcripts are available from http://linnarssonlab.org/cortex.
library(BiocFileCache)
bfc <- BiocFileCache("raw_data", ask = FALSE)
base.url <- file.path("https://storage.googleapis.com",
"linnarsson-lab-www-blobs/blobs/cortex")
mRNA.path <- bfcrpath(bfc, file.path(base.url,
"expression_mRNA_17-Aug-2014.txt"))
mito.path <- bfcrpath(bfc, file.path(base.url,
"expression_mito_17-Aug-2014.txt"))
spike.path <- bfcrpath(bfc, file.path(base.url,
"expression_spikes_17-Aug-2014.txt"))
The count data are distributed across several files, so some work is necessary to consolidate them into a single matrix. We define a simple utility function for loading data in from each file. (We stress that this function is only relevant to the current dataset, and should not be used for other datasets. This kind of effort is generally not required if all of the counts are in a single file and separated from the metadata.)
readFormat <- function(infile) {
# First column is empty.
metadata <- read.delim(infile, stringsAsFactors=FALSE, header=FALSE, nrow=10)[,-1]
rownames(metadata) <- metadata[,1]
metadata <- metadata[,-1]
metadata <- as.data.frame(t(metadata))
# First column after row names is some useless filler.
counts <- read.delim(infile, stringsAsFactors=FALSE,
header=FALSE, row.names=1, skip=11)[,-1]
counts <- as.matrix(counts)
return(list(metadata=metadata, counts=counts))
}
Using this function, we read in the counts for the endogenous genes, ERCC spike-in transcripts and mitochondrial genes.
endo.data <- readFormat(mRNA.path)
spike.data <- readFormat(spike.path)
mito.data <- readFormat(mito.path)
We also need to rearrange the columns for the mitochondrial data, as the order is not consistent with the other files.
m <- match(endo.data$metadata$cell_id, mito.data$metadata$cell_id)
mito.data$metadata <- mito.data$metadata[m,]
mito.data$counts <- mito.data$counts[,m]
In this particular dataset, some genes are represented by multiple rows corresponding to alternative genomic locations. We sum the counts for all rows corresponding to a single gene for ease of interpretation.
raw.names <- sub("_loc[0-9]+$", "", rownames(endo.data$counts))
new.counts <- rowsum(endo.data$counts, group=raw.names, reorder=FALSE)
endo.data$counts <- new.counts
The counts are then combined into a single matrix for constructing a SingleCellExperiment
object.
For convenience, metadata for all cells are stored in the same object for later access.
library(SingleCellExperiment)
all.counts <- rbind(endo.data$counts, mito.data$counts, spike.data$counts)
sce <- SingleCellExperiment(list(counts=all.counts), colData=endo.data$metadata)
dim(sce)
## [1] 19896 3005
We add gene-based annotation identifying rows that correspond to each class of features. We also determine the Ensembl identifier for each row.
# Specifying the nature of each row.
nrows <- c(nrow(endo.data$counts), nrow(mito.data$counts), nrow(spike.data$counts))
is.spike <- rep(c(FALSE, FALSE, TRUE), nrows)
is.mito <- rep(c(FALSE, TRUE, FALSE), nrows)
isSpike(sce, "Spike") <- is.spike
# Adding Ensembl IDs.
library(org.Mm.eg.db)
ensembl <- mapIds(org.Mm.eg.db, keys=rownames(sce), keytype="SYMBOL", column="ENSEMBL")
rowData(sce)$ENSEMBL <- ensembl
sce
## class: SingleCellExperiment
## dim: 19896 3005
## metadata(0):
## assays(1): counts
## rownames(19896): Tspan12 Tshz1 ... ERCC-00170 ERCC-00171
## rowData names(1): ENSEMBL
## colnames(3005): V3 V4 ... V3006 V3007
## colData names(10): tissue group # ... level1class level2class
## reducedDimNames(0):
## spikeNames(1): Spike
The original authors of the study have already removed low-quality cells prior to data publication. Nonetheless, we compute some quality control metrics with scater (McCarthy et al. 2017) to check whether the remaining cells are satisfactory.
library(scater)
sce <- calculateQCMetrics(sce, feature_controls=list(Mt=is.mito))
We examine the distribution of the QC metrics across all cells (Figure 1). The library sizes here are at least one order of magnitude lower than observed in the 416B dataset. This is consistent with the use of UMI counts rather than read counts, as each transcript molecule can only produce one UMI count but can yield many reads after fragmentation. In addition, the spike-in proportions are more variable than observed in the 416B dataset. This may reflect a greater variability in the total amount of endogenous RNA per cell when many cell types are present.
par(mfrow=c(2,2), mar=c(5.1, 4.1, 0.1, 0.1))
hist(sce$total_counts/1e3, xlab="Library sizes (thousands)", main="",
breaks=20, col="grey80", ylab="Number of cells")
hist(sce$total_features_by_counts, xlab="Number of expressed genes", main="",
breaks=20, col="grey80", ylab="Number of cells")
hist(sce$pct_counts_Spike, xlab="ERCC proportion (%)",
ylab="Number of cells", breaks=20, main="", col="grey80")
hist(sce$pct_counts_Mt, xlab="Mitochondrial proportion (%)",
ylab="Number of cells", breaks=20, main="", col="grey80")
We remove small outliers for the library size and the number of expressed features, and large outliers for the spike-in proportions. Again, the presence of spike-in transcripts means that we do not have to use the mitochondrial proportions.
libsize.drop <- isOutlier(sce$total_counts, nmads=3, type="lower", log=TRUE)
feature.drop <- isOutlier(sce$total_features_by_counts, nmads=3, type="lower", log=TRUE)
spike.drop <- isOutlier(sce$pct_counts_Spike, nmads=3, type="higher")
Removal of low-quality cells is then performed by combining the filters for all of the metrics. The majority of cells are retained, which suggests that the original quality control procedures were generally adequate.
sce <- sce[,!(libsize.drop | feature.drop | spike.drop)]
data.frame(ByLibSize=sum(libsize.drop), ByFeature=sum(feature.drop),
BySpike=sum(spike.drop), Remaining=ncol(sce))
## ByLibSize ByFeature BySpike Remaining
## 1 8 3 8 2989
We could improve our cell filtering procedure further by setting batch
in isOutlier
to one or more known factors, e.g., mouse/plate of origin.
As previously mentioned, this would avoid inflation of the MAD and improve power to remove low-quality cells.
However, for simplicity, we will not do this as sufficient quality control has already been performed.
Application of cyclone
(Scialdone et al. 2015) to the brain dataset suggests that most of the cells are in G1 phase (Figure 2).
This requires the use of the Ensembl identifiers to match up with the pre-defined classifier.
library(scran)
mm.pairs <- readRDS(system.file("exdata", "mouse_cycle_markers.rds", package="scran"))
assignments <- cyclone(sce, mm.pairs, gene.names=rowData(sce)$ENSEMBL)
table(assignments$phase)
##
## G1 G2M S
## 2980 8 1
plot(assignments$score$G1, assignments$score$G2M, xlab="G1 score", ylab="G2/M score", pch=16)
However, the intepretation of this result requires some caution due to differences between the training and test datasets.
The classifier was trained on C1 SMARTer data and accounts for the biases in that protocol.
The brain dataset uses UMI counts, which has a different set of biases, e.g., 3’-end coverage only, no length bias, no amplification noise.
Furthermore, many neuronal cell types are expected to lie in the G0 resting phase, which is distinct from the other phases of the cell cycle (Coller, Sang, and Roberts 2006).
cyclone
will generally assign such cells to the closest known phase in the training set, which would be G1.
Figure 3 shows the most highly expressed genes across the cell population in the brain dataset. This is mostly occupied by spike-in transcripts, reflecting the use of spike-in concentrations that span the entire range of expression. There are also a number of constitutively expressed genes, as expected.
fontsize <- theme(axis.text=element_text(size=12), axis.title=element_text(size=16))
plotHighestExprs(sce, n=50) + fontsize
Gene abundance is quantified by computing the average count across all cells (Figure 4). As previously mentioned, the UMI count is generally lower than the read count.
ave.counts <- calcAverage(sce, use_size_factors=FALSE)
hist(log10(ave.counts), breaks=100, main="", col="grey",
xlab=expression(Log[10]~"average count"))
We save the average counts into the SingleCellExperiment
object for later use.
We also remove genes that have average counts of zero, as this means that they are not expressed in any cell.
rowData(sce)$ave.count <- ave.counts
to.keep <- ave.counts > 0
sce <- sce[to.keep,]
summary(to.keep)
## Mode FALSE TRUE
## logical 2 19894
We normalize endogenous genes using the computeSumFactors()
function with an additional pre-clustering step (Lun, Bach, and Marioni 2016).
Cells in each cluster are normalized separately, and the size factors are rescaled to be comparable across clusters.
This avoids the need to assume that most genes are non-DE across the entire population - only a non-DE majority is required between pairs of clusters.
Scaling is then performed to ensure that size factors of cells in different clusters are comparable.
min.mean=1
, reflecting the fact that UMI counts are generally smaller than read counts.BSPARAM=
argument, which instructs quickCluster()
to use a approximate algorithm for PCA1 Using methods from the irlba package..
The approximation relies on stochastic initialization so we need to set the random seed for reproducibility - see below for more detail.library(BiocSingular)
set.seed(1000)
clusters <- quickCluster(sce, use.ranks=FALSE, BSPARAM=IrlbaParam())
sce <- computeSumFactors(sce, cluster=clusters, min.mean=0.1)
summary(sizeFactors(sce))
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## 0.1286 0.4615 0.8105 1.0000 1.3221 4.8475
Compared to the 416B analysis, more scatter is observed around the trend between the total count and size factor for each cell (Figure 5). This is consistent with an increased amount of DE between cells of different types, which compromises the accuracy of library size normalization (Robinson and Oshlack 2010). In contrast, the size factors are estimated based on median ratios and are more robust to the presence of DE between cells.
plot(sizeFactors(sce), sce$total_counts/1e3, log="xy",
ylab="Library size (thousands)", xlab="Size factor")
We also compute size factors specific to the spike-in set, as previously described.
sce <- computeSpikeFactors(sce, type="Spike", general.use=FALSE)
Finally, normalized log-expression values are computed for each endogenous gene or spike-in transcript using the appropriate size factors.
sce <- normalize(sce)
Comments from Aaron:
computeSumFactors()
.
This reduces the chance of violating the non-DE assumption that is made during any gene-based scaling normalization.
There is no need for precise clustering at this step, as we will not be interpreting the clusters
at all,
computeSumFactors()
is robust to a moderate level of differential expression between cells in the same cluster, so careful definition of subclusters is not required.
That said, there does need to be sufficient cells in each cluster for pooling, which can be guaranteed with the min.size=
argument in quickCluster()
.quickCluster()
performed clustering based on rank correlations between cells.
The current version (with use.ranks=FALSE
) uses graph-based clustering on principal components obtained from log-expression values.
This is faster and yields higher resolution clusters than before.
Nonetheless, the previous behaviour can be recovered by setting the arguments appropriately, see ?quickCluster
for more details.We model the technical noise by fitting a mean-variance trend to the spike-in transcripts with the trendVar()
function.
var.fit <- trendVar(sce, parametric=TRUE, loess.args=list(span=0.4))
var.out <- decomposeVar(sce, var.fit)
Figure 6 indicates that the trend is fitted accurately to the technical variances. The technical and total variances are also much smaller than those in the 416B dataset. This is due to the use of UMIs, which reduces the noise caused by variable PCR amplification (Islam et al. 2014). Furthermore, the spike-in trend is consistently lower than the variances of the endogenous genes. This reflects the heterogeneity in gene expression across cells of different types.
plot(var.out$mean, var.out$total, pch=16, cex=0.6, xlab="Mean log-expression",
ylab="Variance of log-expression")
points(var.out$mean[isSpike(sce)], var.out$total[isSpike(sce)], col="red", pch=16)
curve(var.fit$trend(x), col="dodgerblue", add=TRUE, lwd=2)
We check the distribution of expression values for the genes with the largest biological components to ensure that they are not driven by outliers (Figure 7).
Some tweaking of the plotExpression
parameters is necessary to visualize a large number of cells.
chosen.genes <- order(var.out$bio, decreasing=TRUE)[1:10]
plotExpression(sce, rownames(var.out)[chosen.genes],
point_alpha=0.05, jitter_type="jitter") + fontsize
Finally, we use PCA to denoise the expression values, yielding a set of coordinates for each cell where the technical noise has been removed.
Setting BSPARAM=IrlbaParam()
in denoisePCA()
will perform an approximate singular value decomposition (SVD) using methods from the irlba package.
This is much faster than the exact algorithm on large datasets without much loss of accuracy.
The approximate algorithm involves a random initialization so we set the seed to guarantee reproducibility.
set.seed(1000)
sce <- denoisePCA(sce, technical=var.fit$trend, BSPARAM=IrlbaParam())
ncol(reducedDim(sce, "PCA"))
## [1] 100
Comments from Aaron:
denoisePCA()
is specified by the max.rank=
argument.
This is set to 100 by default to ensure that the approximate SVD runs quickly.
A higher max.rank
may be more appropriate for extremely heterogeneous populations, though the default setting is generally satisfactory for dimensionality reduction.We perform dimensionality reduction on the denoised PCs to check if there is any substructure. Cells separate into clear clusters in the t-SNE plot (Van der Maaten and Hinton 2008) in Figure 8, corresponding to distinct subpopulations. This is consistent with the presence of multiple cell types in the diverse brain population. We increase the perplexity to favour visualization of the overall structure at the expense of local scale.
set.seed(1000)
sce <- runTSNE(sce, use_dimred="PCA", perplexity=50)
tsne1 <- plotTSNE(sce, colour_by="Neurod6") + fontsize
tsne2 <- plotTSNE(sce, colour_by="Mog") + fontsize
multiplot(tsne1, tsne2, cols=2)
The PCA plot is less effective at separating cells into many different clusters (Figure 9). This is because the first two PCs are driven by strong differences between specific subpopulations, which reduces the resolution of more subtle differences between some of the other subpopulations. Nonetheless, some substructure is still visible.
pca1 <- plotReducedDim(sce, use_dimred="PCA", colour_by="Neurod6") + fontsize
pca2 <- plotReducedDim(sce, use_dimred="PCA", colour_by="Mog") + fontsize
multiplot(pca1, pca2, cols=2)
For both methods, we colour each cell based on the expression of a particular gene. This is a useful strategy for visualizing changes in expression across the lower-dimensional space. It can also be used to characterise each cluster if the selected genes are known markers for particular cell types. For example, Mog can be used to identify clusters corresponding to oligodendrocytes.
The reduced dimension coordinates are used to cluster cells into putative subpopulations. We do so by constructing a shared-nearest-neighbour graph (Xu and Su 2015), in which cells are the nodes and edges are formed between cells that share nearest neighbours. Clusters are then defined as highly connected communities of cells within this graph, using methods from the igraph package. This is more efficient than forming a pairwise distance matrix for hierarchical clustering of large numbers of cells.
snn.gr <- buildSNNGraph(sce, use.dimred="PCA")
cluster.out <- igraph::cluster_walktrap(snn.gr)
my.clusters <- cluster.out$membership
table(my.clusters)
## my.clusters
## 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
## 103 200 234 191 194 355 161 658 384 85 90 16 209 38 45 26
We visualize the cluster assignments for all cells on the t-SNE plot in Figure 10. Adjacent cells are generally assigned to the same cluster, indicating that the clustering procedure was applied correctly.
sce$cluster <- factor(my.clusters)
plotTSNE(sce, colour_by="cluster") + fontsize
An alternative approach is to use graph-based visualizations such as force-directed layouts (Figure 11).
These are appealing as they directly represent the relationships used during clustering.
However, convergence tends to be slow for large graphs, so some tinkering with niter=
may be required to ensure that the results are stable.
set.seed(2000)
reducedDim(sce, "force") <- igraph::layout_with_fr(snn.gr, niter=5000)
plotReducedDim(sce, colour_by="cluster", use_dimred="force")
Very heterogeneous datasets may yield a few large clusters on the first round of clustering.
It can be useful to repeat the variance modelling, denoising and clustering using only the cells within each of the initial clusters.
This can be achieved by subsetting sce
according to a particular level of my.clusters
, and re-applying the relevant functions on the subset.
Doing so may focus on a different set of genes that define heterogeneity within an initial cluster, as opposed to those that define differences between the initial clusters.
This would allow fine-scale structure within each cluster to be explored at greater resolution.
For simplicity, though, we will only use the broad clusters corresponding to clear subpopulations in this workflow.
Comments from Aaron:
k
in buildSNNGraph
will reduce the connectivity of the graph.
This will generally result in the formation of smaller clusters (Xu and Su 2015), which may be desirable if greater resolution is required.library(igraph)
, but instead use igraph::
to extract methods from the package.
This is because igraph contains a normalize
method that will override its counterpart from scater, resulting in some unusual bugs.The modularity score provides a global measure of clustering performance for community detection methods. Briefly, it compares the number of within-cluster edges to the expected number under a null model of random edges. A high modularity score (approaching the maximum of 1) indicates that the detected clusters are enriched for internal edges, with relatively few edges between clusters.
igraph::modularity(cluster.out)
## [1] 0.7589898
We further investigate the clusters by examining the total weight of edges for each pair of clusters. For each pair, the observed total weight is compared to what is expected under a null model, similar to the modularity calculation. Most clusters contain more internal links than expected (Figure 12), while links between clusters are fewer than expected. This indicates that we successfully clustered cells into highly-connected communities.
mod.out <- clusterModularity(snn.gr, my.clusters, get.values=TRUE)
ratio <- mod.out$observed/mod.out$expected
lratio <- log10(ratio + 1)
library(pheatmap)
pheatmap(lratio, cluster_rows=FALSE, cluster_cols=FALSE,
color=colorRampPalette(c("white", "blue"))(100))
To summarize the relationships between clusters, we use the ratio of the observed and expected total weights to build a graph across clusters. The cluster-based graph can be visualized using a force-directed layout to identify “clusters of clusters” that are highly interconnected. This is similar to the “graph abstraction” strategy proposed by Wolf et al. (2017).
cluster.gr <- igraph::graph_from_adjacency_matrix(ratio,
mode="undirected", weighted=TRUE, diag=FALSE)
plot(cluster.gr, edge.width=igraph::E(cluster.gr)$weight*10)
Comments from Aaron:
cluster::silhouette
requires the construction of a distance matrix, which may not be feasible when many cells are involved.We use the findMarkers
function with direction="up"
to identify upregulated marker genes for each cluster.
As previously mentioned, we focus on upregulated genes as these can quickly provide positive identification of cell type in a heterogeneous population.
We examine the table for cluster 4, in which log-fold changes are reported between cluster 4 and every other cluster.
The same output is provided for each cluster in order to identify genes that discriminate between clusters.
markers <- findMarkers(sce, my.clusters, direction="up")
marker.set <- markers[["4"]]
head(marker.set[,1:8], 10) # only first 8 columns, for brevity
## DataFrame with 10 rows and 8 columns
## Top p.value FDR
## <integer> <numeric> <numeric>
## Snap25 1 2.6436828195046e-260 5.24427360905115e-256
## Mllt11 1 2.64835618578792e-189 1.05070883314949e-185
## Gad1 1 6.21481316278381e-174 1.54104060887682e-170
## Atp1a3 1 2.42819725183299e-171 5.35201654273444e-168
## Celf4 1 2.1901645927764e-161 2.89641966846033e-158
## Rcan2 1 4.64612038923461e-99 1.35536897295951e-96
## Synpr 1 4.34116077754636e-75 5.66550041738068e-73
## Slc32a1 1 1.84158661555892e-65 1.63818626425301e-63
## Ndrg4 2 2.35144138055514e-242 2.33227713330369e-238
## Stmn3 2 6.36954591686139e-195 3.1588170588194e-191
## logFC.1 logFC.2 logFC.3
## <numeric> <numeric> <numeric>
## Snap25 1.2501919230692 0.67652736125569 3.68263627661648
## Mllt11 1.54667484840171 1.09590198758324 2.99539448469482
## Gad1 3.91523916973606 3.65238977769234 3.98295747045627
## Atp1a3 0.00896823664721724 0.962530545122529 3.26123555545746
## Celf4 0.44643142748766 0.740188939705178 2.71368354840561
## Rcan2 2.20233550942963 1.69523449324012 1.85629710950148
## Synpr 3.14964318830122 2.80066779182528 3.23587929298924
## Slc32a1 1.64312498454162 1.64133992421794 1.74089829213631
## Ndrg4 1.00144003064511 1.20871495924897 3.67086401750027
## Stmn3 1.77997011413237 1.01476517703874 4.20227407178467
## logFC.5 logFC.6
## <numeric> <numeric>
## Snap25 -0.298729905898302 0.717172380132666
## Mllt11 0.446025722578893 0.495996491073405
## Gad1 4.1518488345932 4.13283704263783
## Atp1a3 0.549478199572573 -0.211309991972772
## Celf4 -0.100730536941031 0.120453982728159
## Rcan2 1.15269900728503 2.30454808040103
## Synpr 3.04938017855904 3.25850885734223
## Slc32a1 1.74737321385146 1.7380206484717
## Ndrg4 0.3445857243819 0.754609477952267
## Stmn3 0.546398537343761 0.524932745209836
Figure 14 indicates that most of the top markers are strongly DE in cells of cluster 4 compared to some or all of the other clusters. We can use these markers to identify cells from cluster 4 in validation studies with an independent population of cells. A quick look at the markers suggest that cluster 4 represents interneurons based on expression of Gad1 and Slc6a1 (Zeng et al. 2012), differing from closely related cells in cluster 11 by virtue of high Synpr expression.
top.markers <- rownames(marker.set)[marker.set$Top <= 10]
plotHeatmap(sce, features=top.markers, columns=order(my.clusters),
colour_columns_by="cluster", cluster_cols=FALSE,
center=TRUE, symmetric=TRUE, zlim=c(-5, 5))
An alternative visualization approach is to plot the log-fold changes to all other clusters directly (Figure 15). This is more concise and is useful in situations involving many clusters that contain different numbers of cells.
logFCs <- as.matrix(marker.set[1:50,-(1:3)])
colnames(logFCs) <- sub("logFC.", "", colnames(logFCs))
library(pheatmap)
max.lfc <- max(abs(range(logFCs)))
pheatmap(logFCs, breaks=seq(-5, 5, length.out=101))
We save the list of candidate marker genes for further examination, using compression to reduce the file size.
gzout <- gzfile("brain_marker_1.tsv.gz", open="wb")
write.table(marker.set, file=gzout, sep="\t", quote=FALSE, col.names=NA)
close(gzout)
Comments from Aaron:
overlapExprs()
function may also be useful for summarizing differences between clusters.
This is discussed in more detail here.Having completed the basic analysis, we save the SingleCellExperiment
object with its associated data to file.
This is especially important here as the brain dataset is quite large.
If further analyses are to be performed, it would be inconvenient to have to repeat all of the pre-processing steps described above.
saveRDS(file="brain_data.rds", sce)
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.
sessionInfo()
## R version 3.6.0 (2019-04-26)
## Platform: x86_64-pc-linux-gnu (64-bit)
## Running under: Ubuntu 18.04.2 LTS
##
## Matrix products: default
## BLAS: /home/biocbuild/bbs-3.9-bioc/R/lib/libRblas.so
## LAPACK: /home/biocbuild/bbs-3.9-bioc/R/lib/libRlapack.so
##
## locale:
## [1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C
## [3] LC_TIME=en_US.UTF-8 LC_COLLATE=C
## [5] LC_MONETARY=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8
## [7] LC_PAPER=en_US.UTF-8 LC_NAME=C
## [9] LC_ADDRESS=C LC_TELEPHONE=C
## [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C
##
## attached base packages:
## [1] parallel stats4 stats graphics grDevices utils datasets
## [8] methods base
##
## other attached packages:
## [1] pheatmap_1.0.12
## [2] scRNAseq_1.9.0
## [3] org.Mm.eg.db_3.8.2
## [4] readxl_1.3.1
## [5] TxDb.Mmusculus.UCSC.mm10.ensGene_3.4.0
## [6] GenomicFeatures_1.36.0
## [7] Matrix_1.2-17
## [8] edgeR_3.26.0
## [9] limma_3.40.0
## [10] BiocNeighbors_1.2.0
## [11] TENxBrainData_1.3.0
## [12] HDF5Array_1.12.0
## [13] rhdf5_2.28.0
## [14] Rtsne_0.15
## [15] BiocSingular_1.0.0
## [16] scran_1.12.0
## [17] scater_1.12.0
## [18] ggplot2_3.1.1
## [19] SingleCellExperiment_1.6.0
## [20] SummarizedExperiment_1.14.0
## [21] DelayedArray_0.10.0
## [22] BiocParallel_1.18.0
## [23] matrixStats_0.54.0
## [24] GenomicRanges_1.36.0
## [25] GenomeInfoDb_1.20.0
## [26] org.Hs.eg.db_3.8.2
## [27] AnnotationDbi_1.46.0
## [28] IRanges_2.18.0
## [29] S4Vectors_0.22.0
## [30] Biobase_2.44.0
## [31] BiocGenerics_0.30.0
## [32] BiocFileCache_1.8.0
## [33] dbplyr_1.4.0
## [34] knitr_1.22
## [35] BiocStyle_2.12.0
##
## loaded via a namespace (and not attached):
## [1] tidyselect_0.2.5 RSQLite_2.1.1
## [3] trimcluster_0.1-2.1 grid_3.6.0
## [5] ranger_0.11.2 munsell_0.5.0
## [7] destiny_2.14.0 codetools_0.2-16
## [9] statmod_1.4.30 sROC_0.1-2
## [11] withr_2.1.2 batchelor_1.0.0
## [13] colorspace_1.4-1 highr_0.8
## [15] robustbase_0.93-4 vcd_1.4-4
## [17] VIM_4.8.0 TTR_0.23-4
## [19] labeling_0.3 cvTools_0.3.2
## [21] GenomeInfoDbData_1.2.1 bit64_0.9-7
## [23] xfun_0.6 ggthemes_4.1.1
## [25] diptest_0.75-7 R6_2.4.0
## [27] ggbeeswarm_0.6.0 robCompositions_2.1.0
## [29] rsvd_1.0.0 RcppEigen_0.3.3.5.0
## [31] locfit_1.5-9.1 flexmix_2.3-15
## [33] mvoutlier_2.0.9 reshape_0.8.8
## [35] bitops_1.0-6 assertthat_0.2.1
## [37] promises_1.0.1 scales_1.0.0
## [39] nnet_7.3-12 beeswarm_0.2.3
## [41] gtable_0.3.0 beachmat_2.0.0
## [43] processx_3.3.0 rlang_0.3.4
## [45] scatterplot3d_0.3-41 splines_3.6.0
## [47] rtracklayer_1.44.0 lazyeval_0.2.2
## [49] BiocManager_1.30.4 yaml_2.2.0
## [51] abind_1.4-5 httpuv_1.5.1
## [53] tools_3.6.0 bookdown_0.9
## [55] zCompositions_1.2.0 RColorBrewer_1.1-2
## [57] proxy_0.4-23 dynamicTreeCut_1.63-1
## [59] Rcpp_1.0.1 plyr_1.8.4
## [61] progress_1.2.0 zlibbioc_1.30.0
## [63] purrr_0.3.2 RCurl_1.95-4.12
## [65] ps_1.3.0 prettyunits_1.0.2
## [67] viridis_0.5.1 cowplot_0.9.4
## [69] zoo_1.8-5 haven_2.1.0
## [71] cluster_2.0.9 magrittr_1.5
## [73] data.table_1.12.2 openxlsx_4.1.0
## [75] lmtest_0.9-37 truncnorm_1.0-8
## [77] mvtnorm_1.0-10 hms_0.4.2
## [79] mime_0.6 evaluate_0.13
## [81] xtable_1.8-4 smoother_1.1
## [83] XML_3.98-1.19 rio_0.5.16
## [85] mclust_5.4.3 gridExtra_2.3
## [87] compiler_3.6.0 biomaRt_2.40.0
## [89] tibble_2.1.1 crayon_1.3.4
## [91] htmltools_0.3.6 pcaPP_1.9-73
## [93] later_0.8.0 tidyr_0.8.3
## [95] rrcov_1.4-7 DBI_1.0.0
## [97] ExperimentHub_1.10.0 fpc_2.1-11.2
## [99] MASS_7.3-51.4 rappdirs_0.3.1
## [101] boot_1.3-22 car_3.0-2
## [103] sgeostat_1.0-27 igraph_1.2.4.1
## [105] forcats_0.4.0 pkgconfig_2.0.2
## [107] GenomicAlignments_1.20.0 foreign_0.8-71
## [109] laeken_0.5.0 sp_1.3-1
## [111] vipor_0.4.5 dqrng_0.2.0
## [113] XVector_0.24.0 NADA_1.6-1
## [115] stringr_1.4.0 callr_3.2.0
## [117] digest_0.6.18 pls_2.7-1
## [119] Biostrings_2.52.0 rmarkdown_1.12
## [121] cellranger_1.1.0 DelayedMatrixStats_1.6.0
## [123] kernlab_0.9-27 curl_3.3
## [125] modeltools_0.2-22 shiny_1.3.2
## [127] Rsamtools_2.0.0 Rhdf5lib_1.6.0
## [129] carData_3.0-2 viridisLite_0.3.0
## [131] pillar_1.3.1 GGally_1.4.0
## [133] lattice_0.20-38 survival_2.44-1.1
## [135] httr_1.4.0 DEoptimR_1.0-8
## [137] interactiveDisplayBase_1.22.0 glue_1.3.1
## [139] xts_0.11-2 zip_2.0.1
## [141] prabclus_2.2-7 simpleSingleCell_1.8.0
## [143] bit_1.1-14 class_7.3-15
## [145] stringi_1.4.3 blob_1.1.1
## [147] AnnotationHub_2.16.0 memoise_1.1.0
## [149] dplyr_0.8.0.1 irlba_2.3.3
## [151] e1071_1.7-1
Coller, H. A., L. Sang, and J. M. Roberts. 2006. “A new description of cellular quiescence.” PLoS Biol. 4 (3):e83.
Islam, S., A. Zeisel, S. Joost, G. La Manno, P. Zajac, M. Kasper, P. Lonnerberg, and S. Linnarsson. 2014. “Quantitative single-cell RNA-seq with unique molecular identifiers.” Nat. Methods 11 (2):163–66.
Lun, A. T., K. Bach, and J. C. Marioni. 2016. “Pooling across cells to normalize single-cell RNA sequencing data with many zero counts.” Genome Biol. 17 (April):75.
McCarthy, D. J., K. R. Campbell, A. T. Lun, and Q. F. Wills. 2017. “Scater: pre-processing, quality control, normalization and visualization of single-cell RNA-seq data in R.” Bioinformatics 33 (8):1179–86.
Pollen, A. A., T. J. Nowakowski, J. Shuga, X. Wang, A. A. Leyrat, J. H. Lui, N. Li, et al. 2014. “Low-coverage single-cell mRNA sequencing reveals cellular heterogeneity and activated signaling pathways in developing cerebral cortex.” Nat. Biotechnol. 32 (10):1053–8.
Robinson, M. D., and A. Oshlack. 2010. “A scaling normalization method for differential expression analysis of RNA-seq data.” Genome Biol. 11 (3):R25.
Scialdone, A., K. N. Natarajan, L. R. Saraiva, V. Proserpio, S. A. Teichmann, O. Stegle, J. C. Marioni, and F. Buettner. 2015. “Computational assignment of cell-cycle stage from single-cell transcriptome data.” Methods 85 (September):54–61.
Van der Maaten, L., and G. Hinton. 2008. “Visualizing Data Using T-SNE.” J. Mach. Learn. Res. 9 (2579-2605):85.
Wolf, F. Alexander, Fiona Hamey, Mireya Plass, Jordi Solana, Joakim S. Dahlin, Berthold Gottgens, Nikolaus Rajewsky, Lukas Simon, and Fabian J. Theis. 2017. “Graph Abstraction Reconciles Clustering with Trajectory Inference Through a Topology Preserving Map of Single Cells.” bioRxiv. Cold Spring Harbor Laboratory. https://doi.org/10.1101/208819.
Xu, C., and Z. Su. 2015. “Identification of cell types from single-cell transcriptomes using a novel clustering method.” Bioinformatics 31 (12):1974–80.
Yang, Z., R. Algesheimer, and C. J. Tessone. 2016. “A comparative analysis of community detection algorithms on artificial networks.” Sci. Rep. 6 (August):30750.
Zeisel, A., A. B. Munoz-Manchado, S. Codeluppi, P. Lonnerberg, G. La Manno, A. Jureus, S. Marques, et al. 2015. “Brain structure. Cell types in the mouse cortex and hippocampus revealed by single-cell RNA-seq.” Science 347 (6226):1138–42.
Zeng, H., E. H. Shen, J. G. Hohmann, S. W. Oh, A. Bernard, J. J. Royall, K. J. Glattfelder, et al. 2012. “Large-scale cellular-resolution gene profiling in human neocortex reveals species-specific molecular signatures.” Cell 149 (2):483–96.