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.
The most recent dev build can be installed from GitHub:
Stable version of MuData
will be available in future
bioconductor versions.
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.
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:
An appropriate structure for multimodal datasets is MultiAssayExperiment
.
We will make a respective MultiAssayExperiment object from
sce_citeseq
:
We can write the contents of the MultiAssayExperiment object into an H5MU file:
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):
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.
sessionInfo()
#> R version 4.4.2 (2024-10-31)
#> Platform: x86_64-pc-linux-gnu
#> Running under: Ubuntu 24.04.1 LTS
#>
#> Matrix products: default
#> BLAS: /usr/lib/x86_64-linux-gnu/openblas-pthread/libblas.so.3
#> LAPACK: /usr/lib/x86_64-linux-gnu/openblas-pthread/libopenblasp-r0.3.26.so; LAPACK version 3.12.0
#>
#> locale:
#> [1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C
#> [3] LC_TIME=en_US.UTF-8 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: Etc/UTC
#> tzcode source: system (glibc)
#>
#> attached base packages:
#> [1] stats4 stats graphics grDevices utils datasets methods
#> [8] base
#>
#> other attached packages:
#> [1] scater_1.35.0 ggplot2_3.5.1
#> [3] scuttle_1.17.0 CiteFuse_1.19.0
#> [5] MultiAssayExperiment_1.33.1 SingleCellExperiment_1.29.1
#> [7] SummarizedExperiment_1.37.0 Biobase_2.67.0
#> [9] GenomicRanges_1.59.1 GenomeInfoDb_1.43.2
#> [11] IRanges_2.41.2 MatrixGenerics_1.19.0
#> [13] matrixStats_1.4.1 MuData_1.11.0
#> [15] rhdf5_2.51.0 S4Vectors_0.45.2
#> [17] BiocGenerics_0.53.3 generics_0.1.3
#> [19] Matrix_1.7-1 BiocStyle_2.35.0
#>
#> loaded via a namespace (and not attached):
#> [1] RColorBrewer_1.1-3 sys_3.4.3 tensorA_0.36.2.1
#> [4] jsonlite_1.8.9 magrittr_2.0.3 ggbeeswarm_0.7.2
#> [7] farver_2.1.2 rmarkdown_2.29 zlibbioc_1.52.0
#> [10] vctrs_0.6.5 memoise_2.0.1 htmltools_0.5.8.1
#> [13] S4Arrays_1.7.1 BiocNeighbors_2.1.1 Rhdf5lib_1.29.0
#> [16] SparseArray_1.7.2 sass_0.4.9 bslib_0.8.0
#> [19] htmlwidgets_1.6.4 plyr_1.8.9 plotly_4.10.4
#> [22] cachem_1.1.0 buildtools_1.0.0 igraph_2.1.1
#> [25] lifecycle_1.0.4 pkgconfig_2.0.3 rsvd_1.0.5
#> [28] R6_2.5.1 fastmap_1.2.0 GenomeInfoDbData_1.2.13
#> [31] digest_0.6.37 colorspace_2.1-1 dqrng_0.4.1
#> [34] irlba_2.3.5.1 beachmat_2.23.3 labeling_0.4.3
#> [37] randomForest_4.7-1.2 fansi_1.0.6 httr_1.4.7
#> [40] polyclip_1.10-7 abind_1.4-8 compiler_4.4.2
#> [43] withr_3.0.2 BiocParallel_1.41.0 viridis_0.6.5
#> [46] ggforce_0.4.2 MASS_7.3-61 bayesm_3.1-6
#> [49] DelayedArray_0.33.3 bluster_1.17.0 tools_4.4.2
#> [52] vipor_0.4.7 beeswarm_0.4.0 glue_1.8.0
#> [55] dbscan_1.2-0 nlme_3.1-166 rhdf5filters_1.19.0
#> [58] grid_4.4.2 Rtsne_0.17 cluster_2.1.6
#> [61] reshape2_1.4.4 gtable_0.3.6 tidyr_1.3.1
#> [64] data.table_1.16.2 BiocSingular_1.23.0 tidygraph_1.3.1
#> [67] ScaledMatrix_1.15.0 metapod_1.15.0 utf8_1.2.4
#> [70] XVector_0.47.0 ggrepel_0.9.6 pillar_1.9.0
#> [73] stringr_1.5.1 limma_3.63.2 robustbase_0.99-4-1
#> [76] splines_4.4.2 dplyr_1.1.4 tweenr_2.0.3
#> [79] lattice_0.22-6 survival_3.7-0 compositions_2.0-8
#> [82] tidyselect_1.2.1 locfit_1.5-9.10 maketools_1.3.1
#> [85] knitr_1.49 gridExtra_2.3 edgeR_4.5.1
#> [88] xfun_0.49 graphlayouts_1.2.1 mixtools_2.0.0
#> [91] statmod_1.5.0 DEoptimR_1.1-3-1 pheatmap_1.0.12
#> [94] stringi_1.8.4 UCSC.utils_1.3.0 lazyeval_0.2.2
#> [97] yaml_2.3.10 evaluate_1.0.1 codetools_0.2-20
#> [100] kernlab_0.9-33 ggraph_2.2.1 tibble_3.2.1
#> [103] BiocManager_1.30.25 cli_3.6.3 uwot_0.2.2
#> [106] segmented_2.1-3 munsell_0.5.1 jquerylib_0.1.4
#> [109] Rcpp_1.0.13-1 parallel_4.4.2 scran_1.35.0
#> [112] viridisLite_0.4.2 scales_1.3.0 ggridges_0.5.6
#> [115] purrr_1.0.2 crayon_1.5.3 rlang_1.1.4
#> [118] cowplot_1.1.3