0.1 Introduction

CITE-seq data provide RNA and surface protein counts for the same cells. This tutorial shows how MuData can be integrated into with Bioconductor workflows to analyse CITE-seq data.

0.2 Installation

The most recent dev build can be installed from GitHub:

library(remotes)
remotes::install_github("ilia-kats/MuData")

Stable version of MuData will be available in future bioconductor versions.

0.3 Loading libraries

library(MuData)
library(SingleCellExperiment)
library(MultiAssayExperiment)
library(CiteFuse)
library(scater)

library(rhdf5)

0.4 Loading data

We will use CITE-seq data available within CiteFuse Bioconductor package.

data("CITEseq_example", package = "CiteFuse")
lapply(CITEseq_example, dim)
#> $RNA
#> [1] 19521   500
#> 
#> $ADT
#> [1]  49 500
#> 
#> $HTO
#> [1]   4 500

This dataset contains three matrices — one with RNA counts, one with antibody-derived tags (ADT) counts and one with hashtag oligonucleotide (HTO) counts.

0.5 Processing count matrices

While CITE-seq analysis workflows such as CiteFuse should be consulted for more details, below we exemplify simple data transformations in order to demonstrate how their output can be saved to an H5MU file later on.

Following the CiteFuse tutorial, we start with creating a SingleCellExperiment object with the three matrices:

sce_citeseq <- preprocessing(CITEseq_example)
sce_citeseq
#> class: SingleCellExperiment 
#> dim: 19521 500 
#> metadata(0):
#> assays(1): counts
#> rownames(19521): hg19_AL627309.1 hg19_AL669831.5 ... hg19_MT-ND6
#>   hg19_MT-CYB
#> rowData names(0):
#> colnames(500): AAGCCGCGTTGTCTTT GATCGCGGTTATCGGT ... TTGGCAACACTAGTAC
#>   GCTGCGAGTTGTGGCC
#> colData names(0):
#> reducedDimNames(0):
#> mainExpName: NULL
#> altExpNames(2): ADT HTO

We will add a new assay with normalised RNA counts:

sce_citeseq <- scater::logNormCounts(sce_citeseq)
sce_citeseq  # new assay: logcounts
#> class: SingleCellExperiment 
#> dim: 19521 500 
#> metadata(0):
#> assays(2): counts logcounts
#> rownames(19521): hg19_AL627309.1 hg19_AL669831.5 ... hg19_MT-ND6
#>   hg19_MT-CYB
#> rowData names(0):
#> colnames(500): AAGCCGCGTTGTCTTT GATCGCGGTTATCGGT ... TTGGCAACACTAGTAC
#>   GCTGCGAGTTGTGGCC
#> colData names(1): sizeFactor
#> reducedDimNames(0):
#> mainExpName: NULL
#> altExpNames(2): ADT HTO

To the ADT modality, we will add an assay with normalised counts:

sce_citeseq <- CiteFuse::normaliseExprs(
  sce_citeseq, altExp_name = "ADT", transform = "log"
)
altExp(sce_citeseq, "ADT")  # new assay: logcounts
#> class: SummarizedExperiment 
#> dim: 49 500 
#> metadata(0):
#> assays(2): counts logcounts
#> rownames(49): B220 (CD45R) B7-H1 (PD-L1) ... TCRb TCRg
#> rowData names(0):
#> colnames(500): AAGCCGCGTTGTCTTT GATCGCGGTTATCGGT ... TTGGCAACACTAGTAC
#>   GCTGCGAGTTGTGGCC
#> colData names(0):

We will also generate reduced dimensions:

sce_citeseq <- scater::runPCA(
  sce_citeseq, exprs_values = "logcounts", ncomponents = 20
)
scater::plotReducedDim(sce_citeseq, dimred = "PCA", 
                       by_exprs_values = "logcounts", colour_by = "CD27")

0.6 Making a MultiAssayExperiment object

An appropriate structure for multimodal datasets is MultiAssayExperiment.

We will make a respective MultiAssayExperiment object from sce_citeseq:

experiments <- list(
  ADT = altExp(sce_citeseq, "ADT"),
  HTO = altExp(sce_citeseq, "HTO")
)

# Drop other modalities from sce_citeseq
altExp(sce_citeseq) <- NULL
experiments[["RNA"]] <- sce_citeseq

mae <- MultiAssayExperiment(experiments)

0.7 Writing to H5MU

We can write the contents of the MultiAssayExperiment object into an H5MU file:

writeH5MU(mae, "citefuse_example.h5mu")

We can check that all the modalities were written to the file:

h5 <- rhdf5::H5Fopen("citefuse_example.h5mu")
h5ls(H5Gopen(h5, "mod"), recursive = FALSE)
#>   group name     otype dclass dim
#> 0     /  ADT H5I_GROUP           
#> 1     /  HTO H5I_GROUP           
#> 2     /  RNA H5I_GROUP

… both assays for ADT — raw counts are stored in X and normalised counts are in the corresponding layer:

h5ls(H5Gopen(h5, "mod/ADT"), FALSE)
#>   group   name     otype dclass dim
#> 0     /      X H5I_GROUP           
#> 1     / layers H5I_GROUP           
#> 2     /    obs H5I_GROUP           
#> 3     /    var H5I_GROUP
h5ls(H5Gopen(h5, "mod/ADT/layers"), FALSE)
#>   group      name       otype dclass      dim
#> 0     / logcounts H5I_DATASET  FLOAT 49 x 500

… as well as reduced dimensions (PCA):

h5ls(H5Gopen(h5, "mod/RNA/obsm"), FALSE)
#>   group name       otype dclass      dim
#> 0     /  PCA H5I_DATASET  FLOAT 20 x 500
# There is an alternative way to access groups:
# h5&'mod'&'RNA'&'obsm'
rhdf5::H5close()

0.8 References

  • Muon: multimodal omics analysis framework preprint

  • mudata (Python) documentation

  • muon documentation and web page

  • Kim HJ, Lin Y, Geddes TA, Yang P, Yang JYH (2020). “CiteFuse enables multi-modal analysis of CITE-seq data.” Bioinformatics, 36(14), 4137–4143. https://doi.org/10.1093/bioinformatics/btaa282.

  • Ramos M, Schiffer L, Re A, Azhar R, Basunia A, Cabrera CR, Chan T, Chapman P, Davis S, Gomez-Cabrero D, Culhane AC, Haibe-Kains B, Hansen K, Kodali H, Louis MS, Mer AS, Reister M, Morgan M, Carey V, Waldron L (2017). “Software For The Integration Of Multi-Omics Experiments In Bioconductor.” Cancer Research, 77(21); e39-42.

0.9 Session Info

sessionInfo()
#> R version 4.3.1 (2023-06-16)
#> Platform: x86_64-pc-linux-gnu (64-bit)
#> Running under: Ubuntu 22.04.3 LTS
#> 
#> Matrix products: default
#> BLAS:   /home/biocbuild/bbs-3.18-bioc/R/lib/libRblas.so 
#> LAPACK: /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.10.0
#> 
#> 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       
#> 
#> time zone: America/New_York
#> tzcode source: system (glibc)
#> 
#> attached base packages:
#> [1] stats4    stats     graphics  grDevices utils     datasets  methods  
#> [8] base     
#> 
#> other attached packages:
#>  [1] scater_1.30.0               ggplot2_3.4.4              
#>  [3] scuttle_1.12.0              CiteFuse_1.14.0            
#>  [5] MultiAssayExperiment_1.28.0 SingleCellExperiment_1.24.0
#>  [7] SummarizedExperiment_1.32.0 Biobase_2.62.0             
#>  [9] GenomicRanges_1.54.0        GenomeInfoDb_1.38.0        
#> [11] IRanges_2.36.0              MatrixGenerics_1.14.0      
#> [13] matrixStats_1.0.0           MuData_1.6.0               
#> [15] rhdf5_2.46.0                S4Vectors_0.40.0           
#> [17] BiocGenerics_0.48.0         Matrix_1.6-1.1             
#> [19] BiocStyle_2.30.0           
#> 
#> loaded via a namespace (and not attached):
#>   [1] RColorBrewer_1.1-3        tensorA_0.36.2           
#>   [3] jsonlite_1.8.7            magrittr_2.0.3           
#>   [5] magick_2.8.1              ggbeeswarm_0.7.2         
#>   [7] farver_2.1.1              rmarkdown_2.25           
#>   [9] zlibbioc_1.48.0           vctrs_0.6.4              
#>  [11] DelayedMatrixStats_1.24.0 RCurl_1.98-1.12          
#>  [13] htmltools_0.5.6.1         S4Arrays_1.2.0           
#>  [15] BiocNeighbors_1.20.0      Rhdf5lib_1.24.0          
#>  [17] SparseArray_1.2.0         sass_0.4.7               
#>  [19] bslib_0.5.1               htmlwidgets_1.6.2        
#>  [21] plyr_1.8.9                plotly_4.10.3            
#>  [23] cachem_1.0.8              igraph_1.5.1             
#>  [25] lifecycle_1.0.3           pkgconfig_2.0.3          
#>  [27] rsvd_1.0.5                R6_2.5.1                 
#>  [29] fastmap_1.1.1             GenomeInfoDbData_1.2.11  
#>  [31] digest_0.6.33             colorspace_2.1-0         
#>  [33] dqrng_0.3.1               irlba_2.3.5.1            
#>  [35] beachmat_2.18.0           labeling_0.4.3           
#>  [37] randomForest_4.7-1.1      fansi_1.0.5              
#>  [39] httr_1.4.7                polyclip_1.10-6          
#>  [41] abind_1.4-5               compiler_4.3.1           
#>  [43] withr_2.5.1               BiocParallel_1.36.0      
#>  [45] viridis_0.6.4             ggforce_0.4.1            
#>  [47] MASS_7.3-60               bayesm_3.1-6             
#>  [49] DelayedArray_0.28.0       bluster_1.12.0           
#>  [51] tools_4.3.1               vipor_0.4.5              
#>  [53] beeswarm_0.4.0            glue_1.6.2               
#>  [55] dbscan_1.1-11             nlme_3.1-163             
#>  [57] rhdf5filters_1.14.0       grid_4.3.1               
#>  [59] Rtsne_0.16                cluster_2.1.4            
#>  [61] reshape2_1.4.4            generics_0.1.3           
#>  [63] gtable_0.3.4              tidyr_1.3.0              
#>  [65] data.table_1.14.8         BiocSingular_1.18.0      
#>  [67] tidygraph_1.2.3           ScaledMatrix_1.10.0      
#>  [69] metapod_1.10.0            utf8_1.2.4               
#>  [71] XVector_0.42.0            ggrepel_0.9.4            
#>  [73] pillar_1.9.0              stringr_1.5.0            
#>  [75] limma_3.58.0              robustbase_0.99-0        
#>  [77] splines_4.3.1             dplyr_1.1.3              
#>  [79] tweenr_2.0.2              lattice_0.22-5           
#>  [81] survival_3.5-7            compositions_2.0-6       
#>  [83] tidyselect_1.2.0          locfit_1.5-9.8           
#>  [85] knitr_1.44                gridExtra_2.3            
#>  [87] bookdown_0.36             edgeR_4.0.0              
#>  [89] xfun_0.40                 graphlayouts_1.0.1       
#>  [91] mixtools_2.0.0            statmod_1.5.0            
#>  [93] DEoptimR_1.1-3            pheatmap_1.0.12          
#>  [95] stringi_1.7.12            lazyeval_0.2.2           
#>  [97] yaml_2.3.7                evaluate_0.22            
#>  [99] codetools_0.2-19          kernlab_0.9-32           
#> [101] ggraph_2.1.0              tibble_3.2.1             
#> [103] BiocManager_1.30.22       cli_3.6.1                
#> [105] uwot_0.1.16               segmented_1.6-4          
#> [107] munsell_0.5.0             jquerylib_0.1.4          
#> [109] Rcpp_1.0.11               parallel_4.3.1           
#> [111] scran_1.30.0              sparseMatrixStats_1.14.0 
#> [113] bitops_1.0-7              viridisLite_0.4.2        
#> [115] scales_1.2.1              ggridges_0.5.4           
#> [117] purrr_1.0.2               crayon_1.5.2             
#> [119] rlang_1.1.1               cowplot_1.1.1