File: downsampleBatches.Rd

package info (click to toggle)
r-bioc-scuttle 1.0.4%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 728 kB
  • sloc: cpp: 356; sh: 17; makefile: 2
file content (94 lines) | stat: -rw-r--r-- 4,283 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/downsampleBatches.R
\name{downsampleBatches}
\alias{downsampleBatches}
\title{Downsample batches to equal coverage}
\usage{
downsampleBatches(
  ...,
  batch = NULL,
  block = NULL,
  method = c("median", "mean", "geomean"),
  bycol = TRUE,
  assay.type = 1
)
}
\arguments{
\item{...}{Two or more count matrices, where each matrix has the same set of genes (rows)
and contains cells (columns) from a separate batch.

Alternatively, one or more entries may be a \linkS4class{SummarizedExperiment}, 
in which case the count matrix is extracted from the assays according to \code{assay.type}.

A list containing two or more of these matrices or SummarizedExperiments can also be supplied.

Alternatively, a single count matrix or SummarizedExperiment can be supplied.
This is assumed to contain cells from all batches, in which case \code{batch} should also be specified.}

\item{batch}{A factor of length equal to the number of columns in the sole entry of \code{...},
specifying the batch of origin for each column of the matrix.
Ignored if there are multiple entries in \code{...}.}

\item{block}{If \code{...} contains multiple matrices or SummarizedExperiments,
this should be a character vector of length equal to the number of objects in \code{...},
specifying the blocking level for each object (see Details).

Alternatively, if \code{...} contains a single object, 
this should be a character vector or factor of length specifing the blocking level for each cell in that object.}

\item{method}{String indicating how the average total should be computed.
The geometric mean is computed with a pseudo-count of 1.}

\item{bycol}{A logical scalar indicating whether downsampling should be performed on a column-by-column basis, 
see \code{?\link{downsampleMatrix}} for more details.}

\item{assay.type}{String or integer scalar specifying the assay of the SummarizedExperiment containing the count matrix,
if any SummarizedExperiments are present in \code{...}.}
}
\value{
If \code{...} contains two or more matrices, a \linkS4class{List} of downsampled matrices is returned.

Otherwise, if \code{...} contains only one matrix, the downsampled matrix is returned directly.
}
\description{
A convenience function to downsample all batches so that the average per-cell total count is the same across batches.
This mimics the downsampling functionality of \code{cellranger aggr}.
}
\details{
Downsampling batches with strong differences in sequencing coverage can make it easier to compare them to each other,
reducing the burden on the normalization and batch correction steps.
This is especially true when the number of cells cannot be easily controlled across batches,
resulting in large differences in per-cell coverage even when the total sequencing depth is the same.

Generally speaking, the matrices in \code{...} should be filtered so that only libraries with cells are present.
This is most relevant to high-throughput scRNA-seq experiments (e.g., using  droplet-based protocols)
where the majority of libaries do not actually contain cells.
If these are not filtered out, downsampling will equalize coverage among the majority of empty libraries
rather than among cell-containing libraries.

In more complex experiments,
batches can be organized into blocks where downsampling is performed to the lowest-coverage batch within each block.
This is most useful for larger datasets involving technical replicates for the same biological sample.
By setting \code{block=} to the biological sample, we can equalize coverage across replicates within each sample without forcing all samples to have the same coverage (e.g., to avoid loss of information if they are to be analyzed separately anyway).
}
\examples{
sce1 <- mockSCE()
sce2 <- mockSCE()

# Downsampling for multiple batches in a single matrix:
combined <- cbind(sce1, sce2)
batches <- rep(1:2, c(ncol(sce1), ncol(sce2)))
downsampled <- downsampleBatches(counts(combined), batch=batches)
downsampled[1:10,1:10]

# Downsampling for multiple matrices:
downsampled2 <- downsampleBatches(counts(sce1), counts(sce2))
downsampled2

}
\seealso{
\code{\link{downsampleMatrix}}, which is called by this function under the hood.
}
\author{
Aaron Lun
}