ExperimentColorMap
classiSEE 2.10.0
Compiled date: 2022-11-01
Last edited: 2018-03-08
License: MIT + file LICENSE
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.
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")
}
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
}
When queried for a specific colormap of any type (assay, column data, or row data), the following process takes place:
ExperimentColorMap
.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.
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)
The ExperimentColorMap
class offers the following major features:
colDataColorMap(colormap, "coldata_name")
and setters assayColorMap(colormap, "assay_name") <- colormap_function
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.
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
.
sessionInfo()
#> R version 4.2.1 (2022-06-23)
#> Platform: x86_64-pc-linux-gnu (64-bit)
#> Running under: Ubuntu 20.04.5 LTS
#>
#> Matrix products: default
#> BLAS: /home/biocbuild/bbs-3.16-bioc/R/lib/libRblas.so
#> LAPACK: /home/biocbuild/bbs-3.16-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.15.0 HDF5Array_1.26.0
#> [3] rhdf5_2.42.0 DelayedArray_0.24.0
#> [5] Matrix_1.5-1 scater_1.26.0
#> [7] ggplot2_3.3.6 scuttle_1.8.0
#> [9] scRNAseq_2.11.0 iSEE_2.10.0
#> [11] SingleCellExperiment_1.20.0 SummarizedExperiment_1.28.0
#> [13] Biobase_2.58.0 GenomicRanges_1.50.0
#> [15] GenomeInfoDb_1.34.0 IRanges_2.32.0
#> [17] S4Vectors_0.36.0 BiocGenerics_0.44.0
#> [19] MatrixGenerics_1.10.0 matrixStats_0.62.0
#> [21] BiocStyle_2.26.0
#>
#> loaded via a namespace (and not attached):
#> [1] circlize_0.4.15 AnnotationHub_3.6.0
#> [3] BiocFileCache_2.6.0 igraph_1.3.5
#> [5] lazyeval_0.2.2 shinydashboard_0.7.2
#> [7] splines_4.2.1 BiocParallel_1.32.0
#> [9] digest_0.6.30 ensembldb_2.22.0
#> [11] foreach_1.5.2 htmltools_0.5.3
#> [13] viridis_0.6.2 fansi_1.0.3
#> [15] magrittr_2.0.3 memoise_2.0.1
#> [17] ScaledMatrix_1.6.0 cluster_2.1.4
#> [19] doParallel_1.0.17 ComplexHeatmap_2.14.0
#> [21] Biostrings_2.66.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.34 dplyr_1.0.10
#> [29] crayon_1.5.2 RCurl_1.98-1.9
#> [31] jsonlite_1.8.3 iterators_1.0.14
#> [33] glue_1.6.2 gtable_0.3.1
#> [35] zlibbioc_1.44.0 XVector_0.38.0
#> [37] GetoptLong_1.0.5 BiocSingular_1.14.0
#> [39] Rhdf5lib_1.20.0 shape_1.4.6
#> [41] scales_1.2.1 DBI_1.1.3
#> [43] miniUI_0.1.1.1 Rcpp_1.0.9
#> [45] viridisLite_0.4.1 xtable_1.8-4
#> [47] progress_1.2.2 clue_0.3-62
#> [49] rsvd_1.0.5 bit_4.0.4
#> [51] DT_0.26 htmlwidgets_1.5.4
#> [53] httr_1.4.4 RColorBrewer_1.1-3
#> [55] shinyAce_0.4.2 ellipsis_0.3.2
#> [57] pkgconfig_2.0.3 XML_3.99-0.12
#> [59] sass_0.4.2 dbplyr_2.2.1
#> [61] utf8_1.2.2 tidyselect_1.2.0
#> [63] rlang_1.0.6 later_1.3.0
#> [65] AnnotationDbi_1.60.0 munsell_0.5.0
#> [67] BiocVersion_3.16.0 tools_4.2.1
#> [69] cachem_1.0.6 cli_3.4.1
#> [71] generics_0.1.3 RSQLite_2.2.18
#> [73] ExperimentHub_2.6.0 rintrojs_0.3.2
#> [75] evaluate_0.17 stringr_1.4.1
#> [77] fastmap_1.1.0 yaml_2.3.6
#> [79] knitr_1.40 bit64_4.0.5
#> [81] purrr_0.3.5 AnnotationFilter_1.22.0
#> [83] KEGGREST_1.38.0 sparseMatrixStats_1.10.0
#> [85] nlme_3.1-160 mime_0.12
#> [87] xml2_1.3.3 biomaRt_2.54.0
#> [89] compiler_4.2.1 beeswarm_0.4.0
#> [91] filelock_1.0.2 curl_4.3.3
#> [93] png_0.1-7 interactiveDisplayBase_1.36.0
#> [95] tibble_3.1.8 bslib_0.4.0
#> [97] stringi_1.7.8 highr_0.9
#> [99] GenomicFeatures_1.50.0 lattice_0.20-45
#> [101] ProtGenerics_1.30.0 shinyjs_2.1.0
#> [103] vctrs_0.5.0 rhdf5filters_1.10.0
#> [105] pillar_1.8.1 lifecycle_1.0.3
#> [107] BiocManager_1.30.19 jquerylib_0.1.4
#> [109] GlobalOptions_0.1.2 BiocNeighbors_1.16.0
#> [111] irlba_2.3.5.1 bitops_1.0-7
#> [113] rtracklayer_1.58.0 httpuv_1.6.6
#> [115] R6_2.5.1 BiocIO_1.8.0
#> [117] bookdown_0.29 promises_1.2.0.1
#> [119] gridExtra_2.3 vipor_0.4.5
#> [121] codetools_0.2-18 colourpicker_1.2.0
#> [123] assertthat_0.2.1 fontawesome_0.4.0
#> [125] rjson_0.2.21 withr_2.5.0
#> [127] shinyWidgets_0.7.4 GenomicAlignments_1.34.0
#> [129] Rsamtools_2.14.0 GenomeInfoDbData_1.2.9
#> [131] mgcv_1.8-41 parallel_4.2.1
#> [133] hms_1.1.2 beachmat_2.14.0
#> [135] grid_4.2.1 DelayedMatrixStats_1.20.0
#> [137] rmarkdown_2.17 Rtsne_0.16
#> [139] shiny_1.7.3 ggbeeswarm_0.6.0
#> [141] restfulr_0.0.15
# devtools::session_info()
Rue-Albrecht, K., F. Marini, C. Soneson, and A. T. L. Lun. 2018. “ISEE: Interactive Summarizedexperiment Explorer.” F1000Research 7 (June): 741.