Contents

1 Load and process single cell data

Here we perform analysis of PBMCs from 8 individuals stimulated with interferon-β Kang, et al, 2018, Nature Biotech. We perform standard processing with dreamlet to compute pseudobulk before applying crumblr.

Here, single cell RNA-seq data is downloaded from ExperimentHub.

library(dreamlet)
library(muscat)
library(ExperimentHub)
library(scater)

# Download data, specifying EH2259 for the Kang, et al study
eh <- ExperimentHub()
sce <- eh[["EH2259"]]

sce$ind <- as.character(sce$ind)

# only keep singlet cells with sufficient reads
sce <- sce[rowSums(counts(sce) > 0) > 0, ]
sce <- sce[, colData(sce)$multiplets == "singlet"]

# compute QC metrics
qc <- perCellQCMetrics(sce)

# remove cells with few or many detected genes
ol <- isOutlier(metric = qc$detected, nmads = 2, log = TRUE)
sce <- sce[, !ol]

# set variable indicating stimulated (stim) or control (ctrl)
sce$StimStatus <- sce$stim

1.1 Aggregate to pseudobulk

Dreamlet creates the pseudobulk dataset:

# Since 'ind' is the individual and 'StimStatus' is the stimulus status,
# create unique identifier for each sample
sce$id <- paste0(sce$StimStatus, sce$ind)

# Create pseudobulk data by specifying cluster_id and sample_id for aggregating cells
pb <- aggregateToPseudoBulk(sce,
  assay = "counts",
  cluster_id = "cell",
  sample_id = "id",
  verbose = FALSE
)

1.2 Process data

Here we evaluate whether the observed cell proportions change in response to interferon-β.

library(crumblr)

# use dreamlet::cellCounts() to extract data
cellCounts(pb)[1:3, 1:3]
##          B cells CD14+ Monocytes CD4 T cells
## ctrl101      101             136         288
## ctrl1015     424             644         819
## ctrl1016     119             315         413
# Apply crumblr transformation
# cobj is an EList object compatable with limma workflow
# cobj$E stores transformed values
# cobj$weights stores precision weights
cobj <- crumblr(cellCounts(pb))

1.3 Analysis

Now continue on with the downstream analysis

library(variancePartition)

fit <- dream(cobj, ~ StimStatus + ind, colData(pb))
fit <- eBayes(fit)

topTable(fit, coef = "StimStatusstim", number = Inf)
##                         logFC    AveExpr          t     P.Value  adj.P.Val         B
## CD8 T cells       -0.25085170  0.0857175 -4.0787416 0.002436375 0.01949100 -1.279815
## Dendritic cells    0.37386979 -2.1849234  3.1619195 0.010692544 0.02738587 -2.638507
## CD14+ Monocytes   -0.10525402  1.2698117 -3.1226341 0.011413912 0.02738587 -2.709377
## B cells           -0.10478652  0.5516882 -3.0134349 0.013692935 0.02738587 -2.940542
## CD4 T cells       -0.07840101  2.0201947 -2.2318104 0.050869691 0.08139151 -4.128069
## FCGR3A+ Monocytes  0.07425165 -0.2567492  1.6647681 0.128337022 0.17111603 -4.935304
## NK cells           0.10270672  0.3797777  1.5181860 0.161321761 0.18436773 -5.247806
## Megakaryocytes     0.01377768 -1.8655172  0.1555131 0.879651456 0.87965146 -6.198336

Given the results here, we see that CD8 T cells at others change relative abundance following treatment with interferon-β.

2 Session Info

## R version 4.6.0 RC (2026-04-17 r89917)
## Platform: x86_64-pc-linux-gnu
## Running under: Ubuntu 24.04.4 LTS
## 
## Matrix products: default
## BLAS:   /home/biocbuild/bbs-3.23-bioc/R/lib/libRblas.so 
## LAPACK: /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.12.0  LAPACK version 3.12.0
## 
## locale:
##  [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C               LC_TIME=en_GB             
##  [4] LC_COLLATE=C               LC_MONETARY=en_US.UTF-8    LC_MESSAGES=en_US.UTF-8   
##  [7] LC_PAPER=en_US.UTF-8       LC_NAME=C                  LC_ADDRESS=C              
## [10] LC_TELEPHONE=C             LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C       
## 
## time zone: America/New_York
## tzcode source: system (glibc)
## 
## attached base packages:
## [1] stats4    parallel  stats     graphics  grDevices utils     datasets  methods   base     
## 
## other attached packages:
##  [1] muscData_1.25.0             scater_1.40.0               scuttle_1.22.0             
##  [4] ExperimentHub_3.2.0         AnnotationHub_4.2.0         BiocFileCache_3.2.0        
##  [7] dbplyr_2.5.2                muscat_1.26.0               dreamlet_1.10.0            
## [10] SingleCellExperiment_1.34.0 SummarizedExperiment_1.42.0 Biobase_2.72.0             
## [13] GenomicRanges_1.64.0        Seqinfo_1.2.0               IRanges_2.46.0             
## [16] S4Vectors_0.50.0            BiocGenerics_0.58.0         generics_0.1.4             
## [19] MatrixGenerics_1.24.0       matrixStats_1.5.0           lubridate_1.9.5            
## [22] forcats_1.0.1               stringr_1.6.0               dplyr_1.2.1                
## [25] purrr_1.2.2                 readr_2.2.0                 tidyr_1.3.2                
## [28] tibble_3.3.1                tidyverse_2.0.0             glue_1.8.1                 
## [31] HMP_2.0.1                   dirmult_0.1.3-5             variancePartition_1.42.0   
## [34] BiocParallel_1.46.0         limma_3.68.0                crumblr_1.4.0              
## [37] ggplot2_4.0.3               BiocStyle_2.40.0           
## 
## loaded via a namespace (and not attached):
##   [1] dichromat_2.0-0.1         GSEABase_1.74.0           progress_1.2.3           
##   [4] Biostrings_2.80.0         TH.data_1.1-5             vctrs_0.7.3              
##   [7] digest_0.6.39             png_0.1-9                 corpcor_1.6.10           
##  [10] shape_1.4.6.1             ggrepel_0.9.8             mixsqp_0.3-54            
##  [13] permute_0.9-10            magick_2.9.1              MASS_7.3-65              
##  [16] fontLiberation_0.1.0      reshape2_1.4.5            SQUAREM_2026.1           
##  [19] foreach_1.5.2             withr_3.0.2               xfun_0.57                
##  [22] ggfun_0.2.0               survival_3.8-6            memoise_2.0.1            
##  [25] ggbeeswarm_0.7.3          emmeans_2.0.3             systemfonts_1.3.2        
##  [28] tidytree_0.4.7            zoo_1.8-15                GlobalOptions_0.1.4      
##  [31] gtools_3.9.5              KEGGgraph_1.72.0          prettyunits_1.2.0        
##  [34] KEGGREST_1.52.0           otel_0.2.0                httr_1.4.8               
##  [37] ashr_2.2-63               babelgene_22.9            curl_7.1.0               
##  [40] ScaledMatrix_1.20.0       SparseArray_1.12.0        xtable_1.8-8             
##  [43] doParallel_1.0.17         evaluate_1.0.5            S4Arrays_1.12.0          
##  [46] Rfast_2.1.5.2             hms_1.1.4                 bookdown_0.46            
##  [49] irlba_2.3.7               colorspace_2.1-2          filelock_1.0.3           
##  [52] magrittr_2.0.5            Rgraphviz_2.56.0          viridis_0.6.5            
##  [55] ggtree_4.2.0              lattice_0.22-9            scattermore_1.2          
##  [58] XML_3.99-0.23             pillar_1.11.1             nlme_3.1-169             
##  [61] iterators_1.0.14          caTools_1.18.3            compiler_4.6.0           
##  [64] beachmat_2.28.0           stringi_1.8.7             rmeta_3.0                
##  [67] minqa_1.2.8               plyr_1.8.9                msigdbr_26.1.0           
##  [70] crayon_1.5.3              abind_1.4-8               truncnorm_1.0-9          
##  [73] blme_1.0-7                metadat_1.4-0             gridGraphics_0.5-1       
##  [76] locfit_1.5-9.12           bit_4.6.0                 mathjaxr_2.0-0           
##  [79] sandwich_3.1-1            codetools_0.2-20          multcomp_1.4-30          
##  [82] BiocSingular_1.28.0       bslib_0.10.0              GetoptLong_1.1.1         
##  [85] remaCor_0.0.20            splines_4.6.0             circlize_0.4.18          
##  [88] Rcpp_1.1.1-1.1            sparseMatrixStats_1.24.0  EnrichmentBrowser_2.42.0 
##  [91] knitr_1.51                blob_1.3.0                clue_0.3-68              
##  [94] BiocVersion_3.23.1        lme4_2.0-1                fs_2.1.0                 
##  [97] DelayedMatrixStats_1.34.0 Rdpack_2.6.6              ggplotify_0.1.3          
## [100] estimability_1.5.1        Matrix_1.7-5              rpart.plot_3.1.4         
## [103] statmod_1.5.1             tzdb_0.5.0                fANCOVA_0.6-1            
## [106] pkgconfig_2.0.3           tools_4.6.0               cachem_1.1.0             
## [109] RhpcBLASctl_0.23-42       rbibutils_2.4.1           RSQLite_2.4.6            
## [112] viridisLite_0.4.3         DBI_1.3.0                 numDeriv_2016.8-1.1      
## [115] zigg_0.0.2                fastmap_1.2.0             rmarkdown_2.31           
## [118] scales_1.4.0              grid_4.6.0                broom_1.0.12             
## [121] sass_0.4.10               patchwork_1.3.2           coda_0.19-4.1            
## [124] BiocManager_1.30.27       graph_1.90.0              zenith_1.14.0            
## [127] rpart_4.1.27              farver_2.1.2              reformulas_0.4.4         
## [130] aod_1.3.3                 mgcv_1.9-4                yaml_2.3.12              
## [133] cli_3.6.6                 lifecycle_1.0.5           mashr_0.2.79             
## [136] glmmTMB_1.1.14            mvtnorm_1.3-7             backports_1.5.1          
## [139] annotate_1.90.0           timechange_0.4.0          gtable_0.3.6             
## [142] rjson_0.2.23              metafor_5.0-1             ape_5.8-1                
## [145] jsonlite_2.0.0            edgeR_4.10.0              bitops_1.0-9             
## [148] bit64_4.8.0               assertthat_0.2.1          yulab.utils_0.2.4        
## [151] vegan_2.7-3               BiocNeighbors_2.6.0       RcppParallel_5.1.11-2    
## [154] jquerylib_0.1.4           pbkrtest_0.5.5            lazyeval_0.2.3           
## [157] htmltools_0.5.9           rappdirs_0.3.4            tinytex_0.59             
## [160] httr2_1.2.2               XVector_0.52.0            gdtools_0.5.0            
## [163] RCurl_1.98-1.18           treeio_1.36.0             gridExtra_2.3            
## [166] EnvStats_3.1.0            boot_1.3-32               TMB_1.9.21               
## [169] invgamma_1.2              R6_2.6.1                  ggiraph_0.9.6            
## [172] gplots_3.3.0              labeling_0.4.3            cluster_2.1.8.2          
## [175] aplot_0.2.9               nloptr_2.2.1              DelayedArray_0.38.0      
## [178] tidyselect_1.2.1          vipor_0.4.7               fontBitstreamVera_0.1.1  
## [181] AnnotationDbi_1.74.0      rsvd_1.0.5                KernSmooth_2.23-26       
## [184] S7_0.2.2                  fontquiver_0.2.1          data.table_1.18.2.1      
## [187] htmlwidgets_1.6.4         ComplexHeatmap_2.28.0     RColorBrewer_1.1-3       
## [190] rlang_1.2.0               lmerTest_3.2-1            beeswarm_0.4.0