muscat
muscat
: multi-sample multi-group scRNA-seq analysis tools (Crowell et al. 2019) provides a straightforward but effective simulation framework that is anchored to a labeled multi-sample multi-subpopulation scRNA-seq reference dataset, uses (non-zero-inflated) negative binomial (NB) as the canonical distribution for droplet scRNA-seq datasets, and exposes various parameters to modulate: the number of subpopulations and samples simulated, the number of cells per subpopulation (and sample), and the type and magnitude of a wide range of patterns of differential expression.
This vignette serves to provide the underlying theoretical background, to thoroughly describe the various input arguments, and to demonstrate the simulation framework’s current capabilities using some illustrative (not necessarily realistic) examples.
muscat 1.8.2
For details on the concepts presented here, consider having a look at our preprint:
Crowell HL, Soneson C*, Germain P-L*,
Calini D, Collin L, Raposo C, Malhotra D & Robinson MD:
On the discovery of population-specific state transitions from
multi-sample multi-condition single-cell RNA sequencing data.
bioRxiv 713412 (July, 2019). doi: 10.1101/713412
library(cowplot)
library(dplyr)
library(reshape2)
library(muscat)
library(purrr)
library(scater)
library(SingleCellExperiment)
To demonstrate muscat’s simulation framework, we will use a SingleCellExperiment (SCE) containing 10x droplet-based scRNA-seq PBCM data from 8 Lupus patients obtained befor and after 6h-treatment with IFN-\(\beta\) (Kang et al. 2018). The complete raw data, as well as gene and cell metadata is available through the NCBI GEO, accession number GSE96583.
muscat’s simulation framework comprises: i) estimation of negative binomial (NB) parameters from a reference multi-subpopulation, multi-sample dataset; ii) sampling of gene and cell parameters to use for simulation; and, iii) simulation of gene expression data as NB distributions of mixtures thereof. See Fig. 1.
Let \(Y = (y_{gc})\in\mathbb{N}_0^{G\times C}\) denote the count matrix of a multi-sample multi-subpopulation reference dataset with genes \(\mathcal{G} = \{ g_1, \ldots, g_G \}\) and sets of cells \(\mathcal{C}_{sk} = \{ c^{sk}_1, ..., c^{sk}_{C_{sk}} \}\) for each sample \(s\) and subpopulation \(k\) (\(C_{sk}\) is the number of cells for sample \(s\), subpopulation \(k\)). For each gene \(g\), we fit a model to estimate sample-specific means \(\beta_g^s\), for each sample \(s\), and dispersion parameters \(\phi_g\) using ’s function with default parameters. Thus, we model the reference count data as NB distributed:
\[Y_{gc} \sim NB(\mu_{gc}, \phi_g)\]
for gene \(g\) and cell \(c\), where the mean \(\mu_{gc} = \exp(\beta_{g}^{s(c)}) \cdot \lambda_c\). Here, \(\beta_{g}^{s(c)}\) is the relative abundance of gene \(g\) in sample \(s(c)\), \(\lambda_c\) is the library size (total number of counts), and \(\phi_g\) is the dispersion.
For each subpopulation, we randomly assign each gene to a given differential distribution (DD) category (Korthauer et al. 2016) according to a probability vector p_dd
\(=(p_{EE},p_{EP},p_{DE},p_{DP},p_{DM},p_{DB})\). For each gene and subpopulation, we draw a vector of fold changes (FCs) from a Gamma distribution with shape parameter \(\alpha=4\) and rate \(\beta=4/\mu_\text{logFC}\), where \(\mu_\text{logFC}\) is the desired average logFC across all genes and subpopulations specified via argument lfc
. The direction of differential expression is randomized for each gene, with equal probability of up- and down-regulation.
Next, we split the cells in a given subpopulations into two sets (representing treatment groups), \(\mathcal{T}_A\) and \(\mathcal{T}_B\), which are in turn split again into two sets each (representing subpopulations within the given treatment group.), \(\mathcal{T}_{A_1}/\mathcal{T}_{A_2}\) and \(\mathcal{T}_{B_1}/\mathcal{T}_{B_2}\).
For EE genes, counts for \(\mathcal{T}_A\) and \(\mathcal{T}_B\) are drawn using identical means.For EP genes, we multiply the effective means for identical fractions of cells per group by the sample FCs, i.e., cells are split such that \(\dim\mathcal{T}_{A_1} = \dim\mathcal{T}_{B_1}\) and \(\dim\mathcal{T}_{A_2} = \dim\mathcal{T}_{B_2}\). For DE genes, the means of one group, \(A\) or \(B\), are multiplied with the samples FCs. DP genes are simulated analogously to EP genes with \(\dim\mathcal{T}_{A_1} = a\cdot\dim\mathcal{T}_A\) and \(\dim\mathcal{T}_{B_1} = b\cdot\dim\mathcal{T}_B\), where \(a+b=1\) and \(a\neq b\). For DM genes, 50% of cells from one group are simulated at \(\mu\cdot\text{logFC}\). For DB genes, all cells from one group are simulated at \(\mu\cdot\text{logFC}/2\), and the second group is split into equal proportions of cells simulated at \(\mu\) and \(\mu\cdot\text{logFC}\), respectively. See Fig. 2.
prepSim
: Preparing data for simulationTo prepare a reference SingleCellExperiment (SCE) for simulation of multi-sample multi-group scRNA-seq data, prepSim
will
Importantly, we want to introduce known changes in states across conditions; thus, only replicates from a single condition should go into the simulation. The group to be kept for simulation may be specified via group_keep
, in which case samples from all other groups (sce$group_id != group_keep
) will be dropped. By default (group_keep = NULL
), prepSim
will select the first group available as reference.
Arguments min_count
, min_cells
, min_genes
and min_size
are used to tune the filtering of genes, cells and subpopulation-instances as follows:
> min_count
in >= min_cells
will be retained> 0
in >= min_genes
will be retained>= min_size
cells will be retained; min_size = NULL
will skip this step# estimate simulation parameters
data(example_sce)
ref <- prepSim(example_sce, verbose = FALSE)
# only samples from `ctrl` group are retained
table(ref$sample_id)
##
## ctrl101 ctrl107
## 200 200
# cell parameters: library sizes
sub <- assay(example_sce[rownames(ref), colnames(ref)])
all.equal(exp(ref$offset), as.numeric(colSums(sub)))
## [1] "names for target but not for current"
## [2] "Mean relative difference: 0.4099568"
# gene parameters: dispersions & sample-specific means
head(rowData(ref))
## DataFrame with 6 rows and 4 columns
## ENSEMBL SYMBOL beta disp
## <character> <character> <DataFrame> <numeric>
## ISG15 ENSG00000187608 ISG15 -7.84574:-0.24711310:-1.039480 4.6360532
## AURKAIP1 ENSG00000175756 AURKAIP1 -7.84859: 0.00768812:-1.171896 0.1784345
## MRPL20 ENSG00000242485 MRPL20 -8.31434:-0.58684477:-0.304827 0.6435324
## SSU72 ENSG00000160075 SSU72 -8.05160:-0.17119703:-0.793222 0.0363892
## RER1 ENSG00000157916 RER1 -7.75327: 0.10731331:-1.261821 0.5046166
## RPL22 ENSG00000116251 RPL22 -8.03553:-0.03357193: 0.143506 0.2023632
simData
: Simulating complex designsProvided with a reference SCE as returned by prepSim
, a variery of simulation scenarios can be generated using the simData
function, which will again return an SCE containg the following elements:
assay
counts
containing the simulated count datacolData
columns cluster/sample/group_id
containing each cells cluster, sample, and group ID (A or B).metadata$gene_info
containing a data.frame
listing, for each gene and cluster
category
logFC
; note that this will only approximate log2(sim_mean.B/sim_mean.A)
for genes of the de
category as other types of state changes use mixtures for NBs, and will consequently not exhibit a shift in means of the same magnitude as logFC
sim_gene
from which dispersion sim_disp
and sample-specific means beta.<sample_id>
were usedsim_mean.A/B
for each groupIn the code chunk that follows, we run a simple simulation with
p_dd = c(1,0,...0)
, i.e., 10% of EE genesnk = 3
subpopulations and ns = 3
replicates for each of 2 groupsng = 1000
genes and nc = 2000
cells, resulting in 2000/2/ns/nk
\(\approx111\) cells for 2 groups with 3 samples each and 3 subpopulations# simulated 10% EE genes
sim <- simData(ref, p_dd = diag(6)[1, ],
nk = 3, ns = 3, nc = 2e3,
ng = 1e3, force = TRUE)
# number of cells per sample and subpopulation
table(sim$sample_id, sim$cluster_id)
##
## cluster1 cluster2 cluster3
## sample1.A 124 124 116
## sample2.A 100 111 108
## sample3.A 104 120 99
## sample1.B 106 107 115
## sample2.B 109 114 104
## sample3.B 123 111 105
By default, we have drawn a random reference sample from levels(ref$sample_id)
for every simulated sample in each group, resulting in an unpaired design:
metadata(sim)$ref_sids
## A B
## sample1 "ctrl107" "ctrl101"
## sample2 "ctrl101" "ctrl107"
## sample3 "ctrl101" "ctrl107"
Alternatively, we can re-run the above simulation with paired = TRUE
such that both groups will use the same set of reference samples, resulting in a paired design:
# simulated paired design
sim <- simData(ref, paired = TRUE,
nk = 3, ns = 3, nc = 2e3,
ng = 1e3, force = TRUE)
# same set of reference samples for both groups
ref_sids <- metadata(sim)$ref_sids
all(ref_sids[, 1] == ref_sids[, 2])
## [1] TRUE
p_dd
: Simulating differential distributionsArgument p_dd
specifies the fraction of cells to simulate for each DD category. Its values should thus lie in \([0,1]\) and sum to 1. Expression densities for an exemplary set of genes simulated from the code below is shown in Fig. 3.
# simulare genes from all DD categories
sim <- simData(ref, p_dd = c(0.5, rep(0.1, 5)),
nc = 2e3, ng = 1e3, force = TRUE)
We can retrieve the category assigned to each gene in each cluster from the gene_info
table stored in the output SCE’s metadata
:
gi <- metadata(sim)$gene_info
table(gi$category)
##
## ee ep de dp dm db
## 962 200 200 218 204 216
rel_lfc
: Simulating cluster-specific state changesBy default, for each gene and subpopulation, we draw a vector of fold changes (FCs) from a Gamma distribution with rate parameter \(\beta\propto\mu_\text{logFC}\), where \(\mu_\text{logFC}\) is the desired average logFC across all genes and subpopulations specified via argument lfc
. This results in state changes that are of same magnitute for each subpopulation.
Now, suppose we wanted to have a subpopulation that does not exhibit any state changes across conditions, or vary the magnitute of changes across subpopulations. To this end, argument rel_lfc
supplies a subpopulation-specific factor applied to the FCs sampled for subpopulation. Fig. 4 demonstrates how this manifests in in two-dimensional embeddings of the cells: Here, we generate a set of 3 simulations with
rel_lfc=c(1,1,1)
rel_lfc=c(1,1,3)
rel_lfc=c(0,1,2)
p_type
: Simulating type featuresThe idea underlying differential state (DS) analysis to test for subpopulation-specific changes in expression across experimental conditions is based on the idea that we i) use stable moleculare signatures (i.e., type features) to group cells into meaningful subpopulations; and, ii) perform statistical tests on state features that are more transiently expression and may be subject to changes in expression upon, for example, treatment or during disease.
The fraction of type features introduced into each subpopulation is specified via argument p_type
. Note that, without introducing any differential states, a non-zero fraction of type genes will result in separation of cells into clusters. Fig. 5 demonstrates how increasing values for p_type
lead to more and more separation of the cells when coloring by cluster ID, but that the lack of state changes leads to homogenous mixing of cells when coloring by group ID.
under development.
simData
contains three parameters that control how subpopulations relate to and differ from one another:
p_type
determines the percentage of type genes exclusice to each clusterphylo_tree
represents a phylogenetic tree specifying of clusters relate to one anotherphylo_pars
controls how branch distances are to be interpretedNote that, when supplied with a cluster phylogeny, argument nk
is ignored and simData
extracts the number of clusters to be simulated from phylo_tree
.
p_type
: Introducing type featuresTo exemplify the effect of the parameter p_type
, we simulate a dataset with \(\approx5\%\) of type genes per cluster, and one group only via probs = list(..., c(1, 0)
(i.e., \(\text{Prob}(\textit{cell is in group 2}) = 0\)):
# simulate 5% of type genes; one group only
sim <- simData(ref, p_type = 0.1,
nc = 2e3, ng = 1e3, force = TRUE,
probs = list(NULL, NULL, c(1, 0)))
# do log-library size normalization
sim <- logNormCounts(sim)
For visualizing the above simulation, we select for genes that are of class type (rowData()$class == "type"
) and have a decent simulated expression mean. Furthermore, we sample a subset of cells for each cluster. The resulting heatmap (Fig. 6) shows that the 3 clusters separate well from one another, but that type genes aren’t necessarily expressed higher in a single cluster. This is the case because a gene selected as reference for a type gene in a given cluster may indeed have a lower expression than the gene used for the remainder of clusters.
# extract gene metadata & number of clusters
rd <- rowData(sim)
nk <- nlevels(sim$cluster_id)
# filter for type genes with high expression mean
is_type <- rd$class == "type"
is_high <- rowMeans(assay(sim, "logcounts")) > 1
gs <- rownames(sim)[is_type & is_high]
# sample 100 cells per cluster for plotting
cs <- lapply(split(seq_len(ncol(sim)), sim$cluster_id), sample, 100)
plotHeatmap(sim[, unlist(cs)], features = gs, center = TRUE,
colour_columns_by = "cluster_id", cutree_cols = nk)
phylo_tree
: Introducing a cluster phylogenyThe scenario illustrated above is arguably not very realistic. Instead, in a biology setting, subpopulations don’t differ from one another by a specific subset of genes, but may share some of the genes decisive for their biologigcal role. I.e., the set type features is not exclusive for every given subpopulation, and some subpopulations are more similar to one another than others.
To introduce a more realistic subpopulation structure, simData
can be supplied with a phylogenetic tree, phylo_tree
, that specifies the relationship and distances between clusters. The tree should be written in Newick format as in the following example:
# specify cluster phylogeny
tree <- "(('cluster1':0.4,'cluster2':0.4):0.4,('cluster3':
0.5,('cluster4':0.2,'cluster5':0.2,'cluster6':0.2):0.4):0.4);"
# visualize cluster tree
library(phylogram)
plot(read.dendrogram(text = tree))
# simulate 5% of type genes; one group only
sim <- simData(ref,
phylo_tree = tree, phylo_pars = c(0.1, 1),
nc = 800, ng = 1e3, dd = FALSE, force = TRUE)
# do log-library size normalization
sim <- logNormCounts(sim)
# extract gene metadata & number of clusters
rd <- rowData(sim)
nk <- nlevels(sim$cluster_id)
# filter for type & shared genes with high expression mean
is_type <- rd$class != "state"
is_high <- rowMeans(assay(sim, "logcounts")) > 1
gs <- rownames(sim)[is_type & is_high]
# sample 100 cells per cluster for plotting
cs <- lapply(split(seq_len(ncol(sim)), sim$cluster_id), sample, 50)
plotHeatmap(sim[, unlist(cs)], features = gs,
center = TRUE, show_rownames = FALSE,
colour_columns_by = "cluster_id")
under development.
As is the case with any simulation, it is crutial to verify the qualitation of the simulated data; i.e., how well key characteristics of the reference data are captured in the simulation. While we have demonstrated that muscat
s simulation framework is capable of reproducing key features of scRNA-seq dataset at both the single-cell and pseudobulk level (Crowell et al. 2019), simulation quality will vary depending on the reference dataset and could suffer from too extreme simulation parameters. Therefore, we advise anyone interested in using the framework presented herein for any type of method evaluation or comparison to generate countsimQC report (Soneson and Robinson 2018) as it is extremly simple to make and very comprehensive.
The code chunk below (not evaluated here) illustrates how to generate a report comparing an exemplary simData
simulation with the reference data provided in ref
. Runtimes are mainly determined by argument maxNForCorr
and maxNForDisp
, and computing a full-blown report can be very time intensive. We thus advice using a sufficient but low number of cells/genes for these steps.
# load required packages
library(countsimQC)
library(DESeq2)
# simulate data
sim <- simData(ref,
ng = nrow(ref),
nc = ncol(ref),
dd = FALSE)
# construct 'DESeqDataSet's for both,
# simulated and reference dataset
dds_sim <- DESeqDataSetFromMatrix(
countData = counts(sim),
colData = colData(sim),
design = ~ sample_id)
dds_ref <- DESeqDataSetFromMatrix(
countData = counts(ref),
colData = colData(ref),
design = ~ sample_id)
dds_list <- list(sim = dds_sim, data = dds_ref)
# generate 'countsimQC' report
countsimQCReport(
ddsList = dds_list,
outputFile = "<file_name>.html",
outputDir = "<output_path>",
outputFormat = "html_document",
maxNForCorr = 200,
maxNForDisp = 500)
A variety of functions for calculation and visualizing performance metrics for evaluation of ranking and binary classification (assignment) methods is provided in the iCOBRA package (Soneson and Robinson 2016).
We firstly define a wrapper that takes as input a method
passed pbDS
and reformats the results as a data.frame
in tidy format, which is in turn right_join
ed with simulation gene metadata. As each methods may return results for different subsets of gene-subpopulation instances, the latter steps assures that the dimensions of all method results will match.
# 'm' is a character string specifying a valid `pbDS` method
.run_method <- function(m) {
res <- pbDS(pb, method = m, verbose = FALSE)
tbl <- resDS(sim, res)
left_join(gi, tbl, by = c("gene", "cluster_id"))
}
Having computed result data.frame
s for a set of methods, we next define a wrapper that prepares the data for evaluation with iCOBRA
using the COBRAData
constructor, and calculates any performance measures of interest (specified via aspects
) with calculate_performance
:
# 'x' is a list of result 'data.frame's
.calc_perf <- function(x, facet = NULL) {
cd <- COBRAData(truth = gi,
pval = data.frame(bind_cols(map(x, "p_val"))),
padj = data.frame(bind_cols(map(x, "p_adj.loc"))))
perf <- calculate_performance(cd,
binary_truth = "is_de", maxsplit = 1e6,
splv = ifelse(is.null(facet), "none", facet),
aspects = c("fdrtpr", "fdrtprcurve", "curve"))
}
Putting it all together, we can finally simulate some data, run a set of DS analysis methods, calculate their performance, and plot a variety of performance metrics depending on the aspects
calculated by .calc_perf
:
# simulation with all DD types
sim <- simData(ref,
p_dd = c(rep(0.3, 2), rep(0.1, 4)),
ng = 1e3, nc = 2e3, ns = 3, force = TRUE)
# aggregate to pseudobulks
pb <- aggregateData(sim)
# extract gene metadata
gi <- metadata(sim)$gene_info
# add truth column (must be numeric!)
gi$is_de <- !gi$category %in% c("ee", "ep")
gi$is_de <- as.numeric(gi$is_de)
# specify methods for comparison & run them
# (must set names for methods to show in visualizations!)
names(mids) <- mids <- c("edgeR", "DESeq2", "limma-trend", "limma-voom")
res <- lapply(mids, .run_method)
# calculate performance measures
# and prep. for plotting with 'iCOBRRA'
library(iCOBRA)
perf <- .calc_perf(res, "cluster_id")
pd <- prepare_data_for_plot(perf)
# plot FDR-TPR curves by cluster
plot_fdrtprcurve(pd) +
theme(aspect.ratio = 1) +
scale_x_continuous(trans = "sqrt") +
facet_wrap(~ splitval, nrow = 1)
sessionInfo()
## R version 4.1.2 (2021-11-01)
## Platform: x86_64-pc-linux-gnu (64-bit)
## Running under: Ubuntu 20.04.4 LTS
##
## Matrix products: default
## BLAS: /home/biocbuild/bbs-3.14-bioc/R/lib/libRblas.so
## LAPACK: /home/biocbuild/bbs-3.14-bioc/R/lib/libRlapack.so
##
## locale:
## [1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C
## [3] LC_TIME=en_GB 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] stats4 stats graphics grDevices utils datasets methods
## [8] base
##
## other attached packages:
## [1] iCOBRA_1.22.2 phylogram_2.1.0
## [3] reshape2_1.4.4 UpSetR_1.4.0
## [5] scater_1.22.0 scuttle_1.4.0
## [7] muscData_1.8.0 SingleCellExperiment_1.16.0
## [9] SummarizedExperiment_1.24.0 Biobase_2.54.0
## [11] GenomicRanges_1.46.1 GenomeInfoDb_1.30.1
## [13] IRanges_2.28.0 S4Vectors_0.32.3
## [15] MatrixGenerics_1.6.0 matrixStats_0.61.0
## [17] ExperimentHub_2.2.1 AnnotationHub_3.2.2
## [19] BiocFileCache_2.2.1 dbplyr_2.1.1
## [21] BiocGenerics_0.40.0 purrr_0.3.4
## [23] muscat_1.8.2 limma_3.50.1
## [25] ggplot2_3.3.5 dplyr_1.0.8
## [27] cowplot_1.1.1 BiocStyle_2.22.0
##
## loaded via a namespace (and not attached):
## [1] estimability_1.3 rappdirs_0.3.3
## [3] coda_0.19-4 tidyr_1.2.0
## [5] bit64_4.0.5 knitr_1.37
## [7] irlba_2.3.5 multcomp_1.4-18
## [9] DelayedArray_0.20.0 data.table_1.14.2
## [11] KEGGREST_1.34.0 RCurl_1.98-1.6
## [13] doParallel_1.0.17 generics_0.1.2
## [15] ScaledMatrix_1.2.0 RhpcBLASctl_0.21-247.1
## [17] TH.data_1.1-0 RSQLite_2.2.10
## [19] future_1.24.0 bit_4.0.4
## [21] httpuv_1.6.5 assertthat_0.2.1
## [23] viridis_0.6.2 xfun_0.30
## [25] hms_1.1.1 jquerylib_0.1.4
## [27] evaluate_0.15 promises_1.2.0.1
## [29] fansi_1.0.2 progress_1.2.2
## [31] caTools_1.18.2 DBI_1.1.2
## [33] geneplotter_1.72.0 htmlwidgets_1.5.4
## [35] ellipsis_0.3.2 RSpectra_0.16-0
## [37] backports_1.4.1 bookdown_0.24
## [39] annotate_1.72.0 aod_1.3.1
## [41] sparseMatrixStats_1.6.0 vctrs_0.3.8
## [43] ROCR_1.0-11 cachem_1.0.6
## [45] withr_2.5.0 emmeans_1.7.2
## [47] sctransform_0.3.3 prettyunits_1.1.1
## [49] cluster_2.1.2 ape_5.6-2
## [51] crayon_1.5.0 genefilter_1.76.0
## [53] edgeR_3.36.0 pkgconfig_2.0.3
## [55] labeling_0.4.2 nlme_3.1-155
## [57] vipor_0.4.5 blme_1.0-5
## [59] rlang_1.0.2 globals_0.14.0
## [61] lifecycle_1.0.1 sandwich_3.0-1
## [63] filelock_1.0.2 rsvd_1.0.5
## [65] Matrix_1.4-0 boot_1.3-28
## [67] zoo_1.8-9 beeswarm_0.4.0
## [69] GlobalOptions_0.1.2 pheatmap_1.0.12
## [71] png_0.1-7 viridisLite_0.4.0
## [73] rjson_0.2.21 bitops_1.0-7
## [75] shinydashboard_0.7.2 KernSmooth_2.23-20
## [77] Biostrings_2.62.0 blob_1.2.2
## [79] DelayedMatrixStats_1.16.0 shape_1.4.6
## [81] stringr_1.4.0 parallelly_1.30.0
## [83] beachmat_2.10.0 scales_1.1.1
## [85] memoise_2.0.1 magrittr_2.0.2
## [87] plyr_1.8.6 gplots_3.1.1
## [89] zlibbioc_1.40.0 compiler_4.1.2
## [91] RColorBrewer_1.1-2 clue_0.3-60
## [93] lme4_1.1-28 DESeq2_1.34.0
## [95] cli_3.2.0 XVector_0.34.0
## [97] lmerTest_3.1-3 listenv_0.8.0
## [99] TMB_1.8.0 MASS_7.3-55
## [101] tidyselect_1.1.2 stringi_1.7.6
## [103] shinyBS_0.61 highr_0.9
## [105] yaml_2.3.5 BiocSingular_1.10.0
## [107] locfit_1.5-9.5 ggrepel_0.9.1
## [109] grid_4.1.2 sass_0.4.0
## [111] tools_4.1.2 future.apply_1.8.1
## [113] parallel_4.1.2 circlize_0.4.14
## [115] foreach_1.5.2 gridExtra_2.3
## [117] farver_2.1.0 Rtsne_0.15
## [119] digest_0.6.29 BiocManager_1.30.16
## [121] shiny_1.7.1 Rcpp_1.0.8
## [123] broom_0.7.12 BiocVersion_3.14.0
## [125] later_1.3.0 RcppAnnoy_0.0.19
## [127] httr_1.4.2 AnnotationDbi_1.56.2
## [129] ComplexHeatmap_2.10.0 Rdpack_2.1.4
## [131] colorspace_2.0-3 XML_3.99-0.9
## [133] splines_4.1.2 uwot_0.1.11
## [135] statmod_1.4.36 xtable_1.8-4
## [137] jsonlite_1.8.0 nloptr_2.0.0
## [139] R6_2.5.1 pillar_1.7.0
## [141] htmltools_0.5.2 mime_0.12
## [143] glue_1.6.2 fastmap_1.1.0
## [145] minqa_1.2.4 DT_0.21
## [147] BiocParallel_1.28.3 BiocNeighbors_1.12.0
## [149] interactiveDisplayBase_1.32.0 codetools_0.2-18
## [151] mvtnorm_1.1-3 utf8_1.2.2
## [153] lattice_0.20-45 bslib_0.3.1
## [155] tibble_3.1.6 numDeriv_2016.8-1.1
## [157] pbkrtest_0.5.1 curl_4.3.2
## [159] ggbeeswarm_0.6.0 gtools_3.9.2
## [161] magick_2.7.3 survival_3.3-1
## [163] glmmTMB_1.1.2.3 rmarkdown_2.12
## [165] munsell_0.5.0 GetoptLong_1.0.5
## [167] GenomeInfoDbData_1.2.7 iterators_1.0.14
## [169] variancePartition_1.24.0 gtable_0.3.0
## [171] rbibutils_2.2.7
Crowell, Helena L, Charlotte Soneson, Pierre-Luc Germain, Daniela Calini, Ludovic Collin, Catarina Raposo, Dheeraj Malhotra, and Mark D Robinson. 2019. “On the Discovery of Population-Specific State Transitions from Multi-Sample Multi-Condition Single-Cell RNA Sequencing Data.” bioRxiv 713412.
Kang, Hyun Min, Meena Subramaniam, Sasha Targ, Michelle Nguyen, Lenka Maliskova, Elizabeth McCarthy, Eunice Wan, et al. 2018. “Multiplexed Droplet Single-Cell RNA-sequencing Using Natural Genetic Variation.” Nature Biotechnology 36 (1): 89–94.
Korthauer, Keegan D, Li-Fang Chu, Michael A Newton, Yuan Li, James Thomson, Ron Stewart, and Christina Kendziorski. 2016. “A Statistical Approach for Identifying Differential Distributions in Single-Cell RNA-seq Experiments.” Genome Biology 17 (1): 222.
Soneson, Charlotte, and Mark D Robinson. 2016. “iCOBRA: Open, Reproducible, Standardized and Live Method Benchmarking.” Nature Methods 13 (4): 283.
———. 2018. “Towards Unified Quality Verification of Synthetic Count Data with countsimQC.” Bioinformatics 34 (4): 691–92.