Compiled date: 2022-04-26

Last edited: 2018-03-08

License: MIT + file LICENSE

1 Background

iSEE coordinates the coloration in every plot via the ExperimentColorMap class (Rue-Albrecht et al. 2018). Colors for samples or features are defined from column or row metadata or assay values using “colormaps”. Each colormap is a function that takes a single integer argument and returns that number of distinct colors. The ExperimentColorMap is a container that stores these functions for use within the iSEE() function. Users can define their own colormaps to customize coloration for specific assays or covariates.

2 Defining colormaps

2.1 Colormaps for continuous variables

For continuous variables, the function will be asked to generate a number of colors (21, by default). Interpolation will then be performed internally to generate a color gradient. Users can use existing color scales like viridis::viridis or heat.colors:

# Coloring for log-counts:
logcounts_color_fun <- viridis::viridis

It is also possible to use a function that completely ignores any arguments, and simply returns a fixed number of interpolation points:

# Coloring for FPKMs:
fpkm_color_fun <- function(n){
    c("black","brown","red","orange","yellow")
}

2.2 Colormaps for categorical variables

For categorical variables, the function should accept the number of levels and return a color per level. Colors are automatically assigned to factor levels in the specified order of the levels.

# Coloring for the 'driver' metadata variable.
driver_color_fun <- function(n){
    RColorBrewer::brewer.pal(n, "Set2")
}

Alternatively, the function can ignore its arguments and simply return a named vector of colors if users want to specify the color for each level explicitly It is the user’s responsibility to ensure that all levels are accounted for1 Needless to say, these functions should not be used as shared or global colormaps.. For instance, the following colormap function will only be compatible with factors of two levels, namely "Y" and "N":

# Coloring for the QC metadata variable:
qc_color_fun <- function(n){
    qc_colors <- c("forestgreen", "firebrick1")
    names(qc_colors) <- c("Y", "N")
    qc_colors
}

3 The colormap hierarchy

3.1 Specific and shared colormaps

Colormaps can be defined by users at three different levels:

  • Each individual assay, column data field, and row data field can be assigned its own distinct colormap. Those colormaps are stored as named lists of functions in the assays, colData, and rowData slots, respectively, of the ExperimentColorMap. This can be useful to easily remember which assay is currently shown; to apply different color scale limits to assays that vary on different ranges of values; or display boolean information in an intuitive way, among many other scenarios.
  • Shared colormaps can be defined for all assays, all column data, and all row data. These colormaps are stored in the all_discrete and all_continuous slots of the ExperimentColorMap, as lists of functions named assays, colData, and rowData.
  • Global colormaps can be defined for all categorical or continuous data. Those two colormaps are stored in the global_discrete and global_continuous slots of the ExperimentColorMap.

3.2 Searching for colors

When queried for a specific colormap of any type (assay, column data, or row data), the following process takes place:

  • A specific individual colormap is looked up in the appropriate slot of the ExperimentColorMap.
  • If it is not found, the shared colormap of the appropriate slot is looked up, according to whether the data are categorical or continuous.
  • If it is not found, the global colormap is looked up, according to whether the data are categorical or continuous.
  • If none of the above colormaps were defined, the ExperimentColorMap will revert to the default colormaps.

By default, viridis is used as the default continuous colormap, and hcl is used as the default categorical colormap.

4 Creating the ExperimentColorMap

We store the set of colormap functions in an instance of the ExperimentColorMap class. Named functions passed as assays, colData, or rowData arguments will be used for coloring data in those slots, respectively.

library(iSEE)
ecm <- ExperimentColorMap(
    assays = list(
        counts = heat.colors,
        logcounts = logcounts_color_fun,
        cufflinks_fpkm = fpkm_color_fun
    ),
    colData = list(
        passes_qc_checks_s = qc_color_fun,
        driver_1_s = driver_color_fun
    ),
    all_continuous = list(
        assays = viridis::plasma
    )
)
ecm
#> Class: ExperimentColorMap
#> assays(3): counts logcounts cufflinks_fpkm
#> colData(2): passes_qc_checks_s driver_1_s
#> rowData(0):
#> all_discrete(0):
#> all_continuous(1): assays

Users can change the defaults for all assays or column data by modifying the shared colormaps. Similarly, users can modify the defaults for all continuous or categorical data by modifying the global colormaps. This is demonstrated below for the continuous variables:

ExperimentColorMap(
    all_continuous=list( # shared
        assays=viridis::plasma,
        colData=viridis::inferno
    ),
    global_continuous=viridis::magma # global
)
#> Class: ExperimentColorMap
#> assays(0):
#> colData(0):
#> rowData(0):
#> all_discrete(0):
#> all_continuous(2): assays colData
#> global_continuous(1)

5 Benefits

The ExperimentColorMap class offers the following major features:

  • A single place to define flexible and lightweight sets of colormaps, that may be saved and reused across sessions and projects outside the app, to apply consistent coloring schemes across entire projects
  • A simple interface through accessors colDataColorMap(colormap, "coldata_name") and setters assayColorMap(colormap, "assay_name") <- colormap_function
  • An elegant fallback mechanism to consistently return a colormap, even for undefined covariates, including a default categorical and continuous colormap, respectively.
  • Three levels of colormaps override: individual, shared within slot (i.e., assays, colData, rowData), or shared globally between all categorical or continuous data scales.

Detailed examples on the use of ExperimentColorMap objects are available in the documentation ?ExperimentColorMap, as well as below.

6 Demonstration

Here, we use the allen single-cell RNA-seq data set to demonstrate the use of the ExperimentColorMap class. Using the sce object that we created previously, we create an iSEE app with the SingleCellExperiment object and the colormap generated above.

app <- iSEE(sce, colormap = ecm)

We run this using runApp to open the app on our browser.

shiny::runApp(app)

Now, choose to color cells by Column data and select passes_qc_checks_s. We will see that all cells that passed QC (Y) are colored “forestgreen”, while the ones that didn’t pass are colored firebrick.

If we color any plot by gene expression, we see that use of counts follows the heat.colors coloring scheme; use of log-counts follows the viridis coloring scheme; and use of FPKMs follows the black-to-yellow scheme we defined in fpkm_color_fun.

Session Info

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] TENxPBMCData_1.13.0         HDF5Array_1.24.0           
#>  [3] rhdf5_2.40.0                DelayedArray_0.22.0        
#>  [5] Matrix_1.4-1                scater_1.24.0              
#>  [7] ggplot2_3.3.5               scuttle_1.6.0              
#>  [9] scRNAseq_2.9.2              iSEE_2.8.0                 
#> [11] SingleCellExperiment_1.18.0 SummarizedExperiment_1.26.0
#> [13] Biobase_2.56.0              GenomicRanges_1.48.0       
#> [15] GenomeInfoDb_1.32.0         IRanges_2.30.0             
#> [17] S4Vectors_0.34.0            BiocGenerics_0.42.0        
#> [19] MatrixGenerics_1.8.0        matrixStats_0.62.0         
#> [21] BiocStyle_2.24.0           
#> 
#> loaded via a namespace (and not attached):
#>   [1] circlize_0.4.14               AnnotationHub_3.4.0          
#>   [3] BiocFileCache_2.4.0           igraph_1.3.1                 
#>   [5] lazyeval_0.2.2                shinydashboard_0.7.2         
#>   [7] splines_4.2.0                 BiocParallel_1.30.0          
#>   [9] digest_0.6.29                 ensembldb_2.20.0             
#>  [11] foreach_1.5.2                 htmltools_0.5.2              
#>  [13] viridis_0.6.2                 fansi_1.0.3                  
#>  [15] magrittr_2.0.3                memoise_2.0.1                
#>  [17] ScaledMatrix_1.4.0            cluster_2.1.3                
#>  [19] doParallel_1.0.17             ComplexHeatmap_2.12.0        
#>  [21] Biostrings_2.64.0             prettyunits_1.1.1            
#>  [23] colorspace_2.0-3              blob_1.2.3                   
#>  [25] rappdirs_0.3.3                ggrepel_0.9.1                
#>  [27] xfun_0.30                     dplyr_1.0.8                  
#>  [29] crayon_1.5.1                  RCurl_1.98-1.6               
#>  [31] jsonlite_1.8.0                iterators_1.0.14             
#>  [33] glue_1.6.2                    gtable_0.3.0                 
#>  [35] zlibbioc_1.42.0               XVector_0.36.0               
#>  [37] GetoptLong_1.0.5              BiocSingular_1.12.0          
#>  [39] Rhdf5lib_1.18.0               shape_1.4.6                  
#>  [41] scales_1.2.0                  DBI_1.1.2                    
#>  [43] miniUI_0.1.1.1                Rcpp_1.0.8.3                 
#>  [45] viridisLite_0.4.0             xtable_1.8-4                 
#>  [47] progress_1.2.2                clue_0.3-60                  
#>  [49] rsvd_1.0.5                    bit_4.0.4                    
#>  [51] DT_0.22                       htmlwidgets_1.5.4            
#>  [53] httr_1.4.2                    RColorBrewer_1.1-3           
#>  [55] shinyAce_0.4.1                ellipsis_0.3.2               
#>  [57] pkgconfig_2.0.3               XML_3.99-0.9                 
#>  [59] sass_0.4.1                    dbplyr_2.1.1                 
#>  [61] utf8_1.2.2                    tidyselect_1.1.2             
#>  [63] rlang_1.0.2                   later_1.3.0                  
#>  [65] AnnotationDbi_1.58.0          munsell_0.5.0                
#>  [67] BiocVersion_3.15.2            tools_4.2.0                  
#>  [69] cachem_1.0.6                  cli_3.3.0                    
#>  [71] generics_0.1.2                RSQLite_2.2.12               
#>  [73] ExperimentHub_2.4.0           rintrojs_0.3.0               
#>  [75] evaluate_0.15                 stringr_1.4.0                
#>  [77] fastmap_1.1.0                 yaml_2.3.5                   
#>  [79] knitr_1.38                    bit64_4.0.5                  
#>  [81] purrr_0.3.4                   AnnotationFilter_1.20.0      
#>  [83] KEGGREST_1.36.0               sparseMatrixStats_1.8.0      
#>  [85] nlme_3.1-157                  mime_0.12                    
#>  [87] xml2_1.3.3                    biomaRt_2.52.0               
#>  [89] compiler_4.2.0                beeswarm_0.4.0               
#>  [91] filelock_1.0.2                curl_4.3.2                   
#>  [93] png_0.1-7                     interactiveDisplayBase_1.34.0
#>  [95] tibble_3.1.6                  bslib_0.3.1                  
#>  [97] stringi_1.7.6                 highr_0.9                    
#>  [99] GenomicFeatures_1.48.0        lattice_0.20-45              
#> [101] ProtGenerics_1.28.0           shinyjs_2.1.0                
#> [103] vctrs_0.4.1                   rhdf5filters_1.8.0           
#> [105] pillar_1.7.0                  lifecycle_1.0.1              
#> [107] BiocManager_1.30.17           jquerylib_0.1.4              
#> [109] GlobalOptions_0.1.2           BiocNeighbors_1.14.0         
#> [111] irlba_2.3.5                   bitops_1.0-7                 
#> [113] rtracklayer_1.56.0            httpuv_1.6.5                 
#> [115] BiocIO_1.6.0                  R6_2.5.1                     
#> [117] bookdown_0.26                 promises_1.2.0.1             
#> [119] gridExtra_2.3                 vipor_0.4.5                  
#> [121] codetools_0.2-18              colourpicker_1.1.1           
#> [123] assertthat_0.2.1              fontawesome_0.2.2            
#> [125] rjson_0.2.21                  withr_2.5.0                  
#> [127] shinyWidgets_0.6.4            GenomicAlignments_1.32.0     
#> [129] Rsamtools_2.12.0              GenomeInfoDbData_1.2.8       
#> [131] mgcv_1.8-40                   parallel_4.2.0               
#> [133] hms_1.1.1                     beachmat_2.12.0              
#> [135] grid_4.2.0                    DelayedMatrixStats_1.18.0    
#> [137] rmarkdown_2.14                Rtsne_0.16                   
#> [139] shiny_1.7.1                   ggbeeswarm_0.6.0             
#> [141] restfulr_0.0.13
# devtools::session_info()

References

Rue-Albrecht, K., F. Marini, C. Soneson, and A. T. L. Lun. 2018. “ISEE: Interactive Summarizedexperiment Explorer.” F1000Research 7 (June): 741.