View source: R/pooledSizeFactors.R
computePooledFactors | R Documentation |
Scaling normalization of single-cell RNA-seq data by deconvolving size factors from cell pools.
pooledSizeFactors(x, ...)
## S4 method for signature 'ANY'
pooledSizeFactors(
x,
sizes = seq(21, 101, 5),
clusters = NULL,
ref.clust = NULL,
max.cluster.size = 3000,
positive = TRUE,
scaling = NULL,
min.mean = NULL,
subset.row = NULL,
BPPARAM = SerialParam()
)
## S4 method for signature 'SummarizedExperiment'
pooledSizeFactors(x, ..., assay.type = "counts")
computePooledFactors(x, ..., assay.type = "counts")
x |
For For |
... |
For the For the |
sizes |
A numeric vector of pool sizes, i.e., number of cells per pool. |
clusters |
An optional factor specifying which cells belong to which cluster, for deconvolution within clusters. |
ref.clust |
A level of |
max.cluster.size |
An integer scalar specifying the maximum number of cells in each cluster. |
positive |
A logical scalar indicating whether linear inverse models should be used to enforce positive estimates. |
scaling |
A numeric scalar containing scaling factors to adjust the counts prior to computing size factors. |
min.mean |
A numeric scalar specifying the minimum (library size-adjusted) average count of genes to be used for normalization. |
subset.row |
An integer, logical or character vector specifying the features to use. |
BPPARAM |
A BiocParallelParam object specifying whether and how clusters should be processed in parallel. |
assay.type |
A string specifying which assay values to use when |
For pooledSizeFactors
, a numeric vector of size factors for all cells in x
is returned.
For computePooledFactors
, an object of class x
is returned containing the vector of size factors in sizeFactors(x)
.
The pooledSizeFactors
function implements the deconvolution strategy of Lun et al. (2016) for scaling normalization of sparse count data.
Briefly, a pool of cells is selected and the expression profiles for those cells are summed together.
The pooled expression profile is normalized against an average reference pseudo-cell, constructed by averaging the counts across all cells.
This defines a size factor for the pool as the median ratio between the count sums and the average across all genes.
The scaling bias for the pool is equal to the sum of the biases for the constituent cells. The same applies for the size factors, as these are effectively estimates of the bias for each cell. This means that the size factor for the pool can be written as a linear equation of the size factors for the cells. Repeating this process for multiple pools will yield a linear system that can be solved to obtain the size factors for the individual cells.
In this manner, pool-based factors are deconvolved to yield the relevant cell-based factors. The advantage is that the pool-based estimates are more accurate, as summation reduces the number of stochastic zeroes and the associated bias of the size factor estimate. This accuracy feeds back into the deconvolution process, thus improving the accuracy of the cell-based size factors.
Within each cluster (if not specified, all cells are put into a single cluster), cells are sorted by increasing library size and a sliding window is applied to this ordering. Each location of the window defines a pool of cells with similar library sizes. This avoids inflated estimation errors for very small cells when they are pooled with very large cells. Sliding the window will construct an over-determined linear system that can be solved by least-squares methods to obtain cell-specific size factors.
Window sliding is repeated with different window sizes to construct the linear system, as specified by sizes
.
By default, the number of cells in each window ranges from 21 to 101.
Using a range of window sizes improves the precision of the estimates, at the cost of increased computational work.
The defaults were chosen to provide a reasonable compromise between these two considerations.
The default set of sizes
also avoids rare cases of linear dependencies and unstable estimates when all pool sizes are not co-prime with the number of cells.
The smallest window should be large enough so that the pool-based size factors are, on average, non-zero.
We recommend window sizes no lower than 20 for UMI data, though smaller windows may be possible for read count data.
The total number of cells should also be at least 100 for effective pooling.
(If cluster
is specified, we would want at least 100 cells per cluster.)
If there are fewer cells than the smallest window size, the function will naturally degrade to performing library size normalization.
This yields results that are the same as librarySizeFactors
.
The simplest approach to pooling is to simply add the counts together for all cells in each pool. However, this is suboptimal as any errors in the estimation of the pooled size factor will propagate to all component cell-specific size factors upon solving the linear system. If the error is distributed evenly across all cell-specific size factors, the small size factors will have larger relative errors compared to the large size factors.
To avoid this, we perform “prescaling” where we divide the counts by a cell-specific factor prior to pooling. Ideally, the prescaling factor should be close to the true size factor for each cell. Solving the linear system constructed with prescaled values should yield estimates that are more-or-less equal across all cells. Thus, given similar absolute errors, the relative errors for all cells will also be similar.
Obviously, the true size factor is unknown (otherwise why bother running this function?)
so we use the library size for each cell as a proxy instead.
This may perform poorly in pathological scenarios involving extreme differential expression and strong composition biases.
In cases where a more appropriate initial estimate is available,
this can be used as the prescaling factor by setting the scaling
argument.
One potential approach is to run computePooledFactors
twice to improve accuracy.
The first run is done as usual and will yield an initial estimate of the size factor for each cell.
In the second run, we supply our initial estimates in the scaling
argument to serve as better prescaling factors.
Obviously, this involves twice as much computational work so we would only recommend attempting this in extreme circumstances.
The linear system is solved using the sparse QR decomposition from the Matrix package.
However, this has known problems when the linear system becomes too large (see https://stat.ethz.ch/pipermail/r-help/2011-August/285855.html).
In such cases, we set clusters
to break up the linear system into smaller, more manageable components that can be solved separately.
The default max.cluster.size
will arbitrarily break up the cell population (within each cluster, if specified) so that we never pool more than 3000 cells.
Note that this involves appending a suffix like "-1"
to the end of each cluster's name;
this may appear on occasion in warnings or error messages.
In general, it is more appropriate to pool more similar cells to avoid violating the assumption of a non-DE majority of genes.
This can be done by specifying the clusters
argument where cells in each cluster have similar expression profiles.
Deconvolution is subsequently applied on the cells within each cluster, where there should be fewer DE genes between cells.
Any clustering can be used, and only a rough clustering is required; computePooledFactors
is robust to a moderate level of DE within each cluster.
The quickCluster
function from the scran package is particularly convenient for this purpose.
Size factors computed within each cluster must be rescaled for comparison between clusters. To do so, we choose one cluster as a “reference” to which all others are normalized. Ideally, the reference cluster should have a stable expression profile and not be extremely different from all other clusters. The assumption here is that there is a non-DE majority between the reference and each other cluster (which is still a weaker assumption than that required without clustering). The rescaling factor is then defined by computing the ratios in averaged expression between each cluster's pseudo-cell and that of the reference, and taking the median of these ratios across all genes.
By default, the cluster with the most non-zero counts is used as the reference.
This reduces the risk of obtaining undefined rescaling factors for the other clusters, while improving the precision (and also accuracy) of the median-based factor estimate.
Alternatively, the reference can be manually specified using ref.clust
if there is prior knowledge about which cluster is most suitable, e.g., from PCA or t-SNE plots.
Each cluster should ideally be large enough to contain a sufficient number of cells for pooling.
Otherwise, computePooledFactors
will fall back to library size normalization for small clusters.
If the estimated rescaling factor is not positive, a warning is emitted and the function falls back to the ratio of sums between pseudo-cells (in effect, library size normalization). This can occasionally happen when a cluster's cells expresses a small subset of genes - this is not problematic for within-cluster normalization, as non-expressed genes are simply ignored, but violates the assumption of a non-DE majority when performing inter-cluster comparisons.
It is possible for the deconvolution algorithm to yield negative or zero estimates for the size factors.
These values are obviously nonsensical and computePooledFactors
will raise a warning if they are encountered.
Negative estimates are mostly commonly generated from low quality cells with few expressed features, such that most genes still have zero counts even after pooling.
They may also occur if insufficient filtering of low-abundance genes was performed.
To avoid these problematic size factors, the best solution is to increase the stringency of the filtering.
If only a few negative/zero size factors are present, they are likely to correspond to a few low-quality cells with few expressed features. Such cells are difficult to normalize reliably under any approach, and can be removed by increasing the stringency of the quality control.
If many negative/zero size factors are present, it is probably due to insufficient filtering of low-abundance genes.
This results in many zero counts and pooled size factors of zero, and can be fixed by filtering out more genes with a higher min.mean
- see “Gene selection” below.
Another approach is to increase in the number of sizes
to improve the precision of the estimates.
This reduces the chance of obtaining negative/zero size factors due to estimation error, for cells where the true size factors are very small.
As a last resort, positive=TRUE
is set by default, which uses cleanSizeFactors
to coerce any non-positive estimates to positive values.
This ensures that, at the very least, downstream analysis is possible even if the size factors for affected cells are not accurate.
Users can skip this step by setting positive=FALSE
to perform their own diagnostics or coercions.
If too many genes have consistently low counts across all cells, even the pool-based size factors will be zero.
This results in zero or negative size factor estimates for many cells.
We avoid this by filtering out low-abundance genes using the min.mean
argument.
This represents a minimum threshold min.mean
on the library size-adjusted average counts from calculateAverage
.
By default, we set min.mean
to 1 for read count data and 0.1 for UMI data.
The exact values of these defaults are more-or-less arbitrary and are retained for historical reasons.
The lower threshold for UMIs is motivated by (i) their lower count sizes, which would result in the removal of too many genes with a higher threshold; and (ii) the lower variability of UMI counts, which results in a lower frequency of zeroes compared to read count data at the same mean.
We use the median library size to detect whether the counts are those of reads (above 100,000) or UMIs (below 50,000) to automatically set min.mean
.
Mean library sizes in between these two limits will trigger a warning and revert to using min.mean=0.1
.
If clusters
is specified, filtering by min.mean
is performed on the per-cluster average during within-cluster normalization,
and then on the (library size-adjusted) average of the per-cluster averages during between-cluster normalization.
Performance can generally be improved by removing genes that are known to be strongly DE between cells.
This weakens the assumption of a non-DE majority and avoids the error associated with DE genes.
For example, we might remove viral genes when our population contains both infected and non-infected cells.
Of course, computePooledFactors
is robust to some level of DE genes - that is, after all, its raison d'etre -
so one should only explicitly remove DE genes if it is convenient to do so.
Previous versions of computePooledFactors
would return the standard error for each size factor when errors=TRUE
.
This argument is no longer available as we have realized that standard error estimation from the linear model is not reliable.
Errors are likely underestimated due to correlations between pool-based size factors when they are computed from a shared set of underlying counts.
Users wishing to obtain a measure of uncertainty are advised to perform simulations instead, using the original size factor estimates to scale the mean counts for each cell.
Standard errors can then be calculated as the standard deviation of the size factor estimates across simulation iterations.
Aaron Lun and Karsten Bach
Lun ATL, Bach K and Marioni JC (2016). Pooling across cells to normalize single-cell RNA sequencing data with many zero counts. Genome Biol. 17:75
logNormCounts
, which uses the computed size factors to compute normalized expression values.
librarySizeFactors
and medianSizeFactors
, for simpler approaches to computing size factors.
quickCluster
from the scran package, to obtain a rough clustering for use in clusters
.
library(scuttle)
sce <- mockSCE(ncells=500)
# Computing the size factors.
sce <- computePooledFactors(sce)
head(sizeFactors(sce))
plot(librarySizeFactors(sce), sizeFactors(sce), log="xy")
# Using pre-clustering.
library(scran)
preclusters <- quickCluster(sce)
table(preclusters)
sce2 <- computePooledFactors(sce, clusters=preclusters)
head(sizeFactors(sce2))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.