Feature Selection and Hierarchical Clustering of cells in Zhengmix4eq

Installing the Package

HIPPO is under review for Bioconductor and CRAN submission. You can download the developer version as below. Please allow up to 5 minutes to completely compile the vignette.

devtools::install_github("tk382/HIPPO", build_vignettes = TRUE)

Read the data

The data set is available in the following link, where the detailed explanation is available here. Note that the file is very large (3.3GB). We use a subset of Zheng 2017 data set saved as a toydata within this package. Also, we load a reference data that matches ENSG ID to HGNC gene names.

data(toydata)
data(ensg_hgnc)

Alternatively, you can start from a matrix object.

# X = readRDS("zhengmix4eq_counts.rds")
# toydata = SingleCellExperiment(assays = list(counts = X))

Diagnostic Plot

This plot shows the zero inflation compared to the expected Poisson line. If most genes don’t align with the black line, it shows that there is cell heterogeneity driving the zero inflation.

hippo_diagnostic_plot(toydata, 
                      show_outliers = TRUE, 
                      zvalue_thresh = 2)

Feature Selection and Hierarchical Clustering

HIPPO assumes that the count matrix is placed in $counts. Some objects that we found online have the count matrix in $data$counts. In this case, HIPPO will throw an error because it cannot found a count matrix. In this case, you have to create another SingleCellExperiment object to assign the count matrix in the correct slot.

Next, you can run hippo function to do the pre-processing that simutlaneously conducts feature selection and hierarchcial clustering. There are three arguments that help you decide the stopping criterion of clustering procedure.

K is the maximum number of clusters that you want. HIPPO will return the clustering results for all k = 2, 3, …, K, so you can overestimate the number of potential clusters. The default is 10, but users are highly recommended to adjust this.

z_threshold is the feature selection criterion. For each round of hierarchical clustering, hippo will find outlier genes where the z-value of significance is greater than the threshold. For example, if you would like to select genes with p-values less than 0.05, z_threshold would be 1.96. The default threshold is 2, but users can use their discretion to change this value.

outlier_proportion is the number of outlier genes to allow. The default is 0.01 (1%) which means the clustering procedure will automatically stop if there are less than 1% of genes remain as important features. With the example data set, the default choice has empirically worked well.

set.seed(20200321)
toydata = hippo(toydata, K = 10, 
                z_threshold = 2, outlier_proportion = 0.00001)

Dimension Reduction for Each Round of HIPPO

We offer two dimension reduction methods: umap and tsne. And we offer two separate visualization functions.

toydata = hippo_dimension_reduction(toydata, method="umap")
hippo_umap_plot(toydata)

toydata = hippo_dimension_reduction(toydata, method="tsne")
hippo_tsne_plot(toydata)

Visualize the selected features at each round

This function shows how the zero-inflation decreases as HIPPO proceeds in the clustering. This function has arguments called switch_to_hgnc and ref. These aim to provide the users an option to change the gene names from ENSG IDs to HGNC symbols for ease of understanding. Many SingleCellExperiment objects have such data embedded in rowData(toydata). Users can create a data frame with ensg and hgnc columns for the genes, and HIPPO will automatically switch the row names of the count matrix from ENSG IDs to HGNC symbols. The default is set to FALSE, assuming that the row names are already HGNC symbols.

data(ensg_hgnc)
zero_proportion_plot(toydata, 
                     switch_to_hgnc = TRUE, 
                     ref = ensg_hgnc)

hippo_feature_heatmap(toydata, k = 3, 
                      switch_to_hgnc = TRUE, 
                      ref = ensg_hgnc, 
                      top.n = 20)

Differential Expression Example

We also offer a differential expression analysis tool.

This function also has an option to switch the gene names to HGNC symbols. top.n argument lets users choose how many top genes to show in the box plot. The default is 5.

The labels of boxplots are aligned with the t-SNE or UMAP plots above. When K is equal to 2, the color codes match with the cell groups as separated in the dimension reduction plot.

toydata = hippo_diffexp(toydata, 
                  top.n = 5, 
                  switch_to_hgnc = TRUE, 
                  ref = ensg_hgnc)

Each round of differential expression test results are also saved in the list of data frames.

head(get_hippo_diffexp(toydata, 1))
              genes  meandiff        sd         z
21  ENSG00000087086 16.087318 0.9591965 16.771661
100 ENSG00000101439  8.384615 0.5678778 14.764823
32  ENSG00000011600  5.038462 0.4402124 11.445523
97  ENSG00000196126  4.308732 0.5546155  7.768864
52  ENSG00000204482  2.253638 0.2991452  7.533593
87  ENSG00000158869  2.022869 0.2839227  7.124717
sessionInfo()
R version 4.2.0 RC (2022-04-19 r82224)
Platform: x86_64-pc-linux-gnu (64-bit)
Running under: Ubuntu 20.04.4 LTS

Matrix products: default
BLAS:   /home/biocbuild/bbs-3.15-bioc/R/lib/libRblas.so
LAPACK: /home/biocbuild/bbs-3.15-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] SingleCellExperiment_1.18.0 SummarizedExperiment_1.26.0
 [3] Biobase_2.56.0              GenomicRanges_1.48.0       
 [5] GenomeInfoDb_1.32.0         IRanges_2.30.0             
 [7] S4Vectors_0.34.0            BiocGenerics_0.42.0        
 [9] MatrixGenerics_1.8.0        matrixStats_0.62.0         
[11] HIPPO_1.8.0                

loaded via a namespace (and not attached):
 [1] ggrepel_0.9.1          Rcpp_1.0.8.3           lattice_0.20-45       
 [4] png_0.1-7              assertthat_0.2.1       digest_0.6.29         
 [7] utf8_1.2.2             RSpectra_0.16-1        R6_2.5.1              
[10] plyr_1.8.7             evaluate_0.15          highr_0.9             
[13] ggplot2_3.3.5          pillar_1.7.0           zlibbioc_1.42.0       
[16] rlang_1.0.2            irlba_2.3.5            jquerylib_0.1.4       
[19] Matrix_1.4-1           reticulate_1.24        rmarkdown_2.14        
[22] labeling_0.4.2         Rtsne_0.16             stringr_1.4.0         
[25] umap_0.2.8.0           munsell_0.5.0          RCurl_1.98-1.6        
[28] DelayedArray_0.22.0    compiler_4.2.0         xfun_0.30             
[31] askpass_1.1            pkgconfig_2.0.3        htmltools_0.5.2       
[34] openssl_2.0.0          tidyselect_1.1.2       tibble_3.1.6          
[37] gridExtra_2.3          GenomeInfoDbData_1.2.8 fansi_1.0.3           
[40] crayon_1.5.1           dplyr_1.0.8            bitops_1.0-7          
[43] grid_4.2.0             jsonlite_1.8.0         gtable_0.3.0          
[46] lifecycle_1.0.1        DBI_1.1.2              magrittr_2.0.3        
[49] scales_1.2.0           cli_3.3.0              stringi_1.7.6         
[52] farver_2.1.0           XVector_0.36.0         reshape2_1.4.4        
[55] bslib_0.3.1            ellipsis_0.3.2         generics_0.1.2        
[58] vctrs_0.4.1            tools_4.2.0            glue_1.6.2            
[61] purrr_0.3.4            fastmap_1.1.0          yaml_2.3.5            
[64] colorspace_2.0-3       knitr_1.38             sass_0.4.1