In addition to the numerous plotting options available in the original Domino, dominoSignal has added more functionality and new methods to improve visualization and interpretation of analysis results. Here, we will go over the different plotting functions available, as well as different options that can be utilized, and options for customization.
In this tutorial, we will use the domino object we built on the Getting Started page. If you have not yet built a domino object, you can do so by following the instructions on the Getting Started page.
cor_heatmap()
can be used to show the correlations
calculated between receptors and transcription factors.
In addition to displaying the scores for the correlations, this
function can also be used to identify correlations above a certain value
(using the bool
and bool_thresh
arguments) or
to identify the combinations of receptors and transcription factors
(TFs) that are connected (with argument
mark_connections
).
cor_heatmap(dom, bool = TRUE, bool_thresh = 0.25)
cor_heatmap(dom, bool = FALSE, mark_connections = TRUE)
If only a subset of receptors or transcription factors are of interest, a vector of either (or both) can be passed to the function.
receptors <- c("CSF1R", "CSF3R", "CCR7", "FCER2")
tfs <- c("PAX5", "JUNB", "FOXJ3", "FOSB")
cor_heatmap(dom, feats = tfs, recs = receptors)
The heatmap functions in dominoSignal are based on
ComplexHeatmap::Heatmap()
and will also accept additional
arguments meant for that function. For example, while an argument for
clustering rows or columns of the heatmap is not explicitly stated, they
can still be passed to ComplexHeatmap::Heatmap()
through
cor_heatmap()
.
feat_heatmap()
is used to show the transcription factor
activation for features in the signaling network.
It functions similarly to cor_heatmap()
, with arguments
to select a specific vector of features, to use a boolean view with a
threshold, and to pass other arguments to
ComplexHeatmap::Heatmap()
. Specific to this function though
are arguments for setting the range of values to be visualized and one
to choose to normalize the scores to the max value.
incoming_signaling_heatmap()
can be used to visualize
the cluster average expression of the ligands capable of activating the
TFs enriched in the cluster. For example, to view the incoming signaling
of the CD8 T cells:
We can also select for specific clusters of interest that are signaling to the CD8 T cells. If we are only interested in viewing the monocyte signaling:
As with our other heatmap functions, options are available for a
minimum threshold, maximum threshold, whether to scale the values after
thresholding, whether to normalize the matrix, and the ability to pass
further arguments to ComplexHeatmap::Heatmap()
.
signaling_heatmap()
makes a heatmap showing the
signaling strength of ligands from each cluster to receptors of each
cluster based on averaged expression.
As with other functions, specific clusters can be selected, thresholds can be set, and normalization methods can be selected as well.
gene_network()
makes a network plot to display signaling
in selected clusters such that ligands, receptors and features
associated with those clusters are displayed as nodes with edges as
linkages. To look at signaling to the CD16 Monocytes from the CD14
Monocytes:
Options to modify this plot include adjusting scaling for the ligands and different layouts (some of which are more legible than others).
gene_network(dom, clust = "CD16_monocyte", OutgoingSignalingClust = "CD14_monocyte",
lig_scale = 25, layout = "sphere")
Additionally, colors can be given for select genes (for example, to highlight a specific signaling path).
signaling_network()
can be used to create a network plot
such that nodes are clusters and the edges indicate signaling from one
cluster to another.
In addition to changes such as scaling, thresholds, or layouts, this plot can be modified by selecting incoming or outgoing clusters (or both!). An example to view signaling from the CD14 Monocytes to other clusters:
A new addition to dominoSignal, circos_ligand_receptor()
creates a chord plot showing ligands that can activate a specific
receptor, displaying mean cluster expression of the ligand with the
width of the chord.
This function can be given cluster colors to match other plots you may make with your data. In addition, the plot can be adjusted by changing the threshold of ligand expression required for a linkage to be visualized or selecting clusters of interest.
cor_scatter()
can be used to plot each cell based on
activation of the selected TF and expression of the receptor. This
produces a scatter plot as well as a line of best fit to look at
receptor - TF correlation.
Do keep in mind that there is an argument for
remove_rec_dropout
that should match the parameter that was
used when the domino object was built. In this case, we did not use that
build parameter, so we will leave the value in this argument as its
default value of FALSE.
Since dominoSignal is a package still being developed, there are new functions and features that will be implemented in future versions. In the meantime, to view an example analysis, see our Getting Started page, or see our domino object structure page to get familiar with the object structure. Additionally, if you find any bugs, have further questions, or want to share an idea, please let us know here.
Date last built and session information:
Sys.Date()
#> [1] "2024-10-29"
sessionInfo()
#> R Under development (unstable) (2024-10-21 r87258)
#> Platform: x86_64-pc-linux-gnu
#> Running under: Ubuntu 24.04.1 LTS
#>
#> Matrix products: default
#> BLAS: /home/biocbuild/bbs-3.21-bioc/R/lib/libRblas.so
#> LAPACK: /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.12.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] grid stats4 stats graphics grDevices utils datasets
#> [8] methods base
#>
#> other attached packages:
#> [1] patchwork_1.3.0 knitr_1.48
#> [3] ComplexHeatmap_2.23.0 circlize_0.4.16
#> [5] plyr_1.8.9 SingleCellExperiment_1.29.0
#> [7] SummarizedExperiment_1.37.0 Biobase_2.67.0
#> [9] GenomicRanges_1.59.0 GenomeInfoDb_1.43.0
#> [11] IRanges_2.41.0 S4Vectors_0.45.0
#> [13] BiocGenerics_0.53.0 MatrixGenerics_1.19.0
#> [15] matrixStats_1.4.1 dominoSignal_1.1.0
#>
#> loaded via a namespace (and not attached):
#> [1] DBI_1.2.3 httr2_1.0.5 formatR_1.14
#> [4] biomaRt_2.63.0 rlang_1.1.4 magrittr_2.0.3
#> [7] clue_0.3-65 GetoptLong_1.0.5 compiler_4.5.0
#> [10] RSQLite_2.3.7 mgcv_1.9-1 png_0.1-8
#> [13] vctrs_0.6.5 stringr_1.5.1 pkgconfig_2.0.3
#> [16] shape_1.4.6.1 crayon_1.5.3 fastmap_1.2.0
#> [19] magick_2.8.5 backports_1.5.0 dbplyr_2.5.0
#> [22] XVector_0.47.0 labeling_0.4.3 utf8_1.2.4
#> [25] rmarkdown_2.28 UCSC.utils_1.3.0 purrr_1.0.2
#> [28] bit_4.5.0 xfun_0.48 zlibbioc_1.53.0
#> [31] cachem_1.1.0 jsonlite_1.8.9 progress_1.2.3
#> [34] blob_1.2.4 highr_0.11 DelayedArray_0.33.0
#> [37] broom_1.0.7 parallel_4.5.0 prettyunits_1.2.0
#> [40] cluster_2.1.6 R6_2.5.1 bslib_0.8.0
#> [43] stringi_1.8.4 RColorBrewer_1.1-3 car_3.1-3
#> [46] jquerylib_0.1.4 Rcpp_1.0.13 iterators_1.0.14
#> [49] splines_4.5.0 igraph_2.1.1 Matrix_1.7-1
#> [52] tidyselect_1.2.1 abind_1.4-8 yaml_2.3.10
#> [55] doParallel_1.0.17 codetools_0.2-20 curl_5.2.3
#> [58] lattice_0.22-6 tibble_3.2.1 withr_3.0.2
#> [61] KEGGREST_1.47.0 evaluate_1.0.1 BiocFileCache_2.15.0
#> [64] xml2_1.3.6 Biostrings_2.75.0 pillar_1.9.0
#> [67] ggpubr_0.6.0 filelock_1.0.3 carData_3.0-5
#> [70] foreach_1.5.2 generics_0.1.3 hms_1.1.3
#> [73] ggplot2_3.5.1 munsell_0.5.1 scales_1.3.0
#> [76] glue_1.8.0 tools_4.5.0 ggsignif_0.6.4
#> [79] Cairo_1.6-2 tidyr_1.3.1 AnnotationDbi_1.69.0
#> [82] colorspace_2.1-1 nlme_3.1-166 GenomeInfoDbData_1.2.13
#> [85] Formula_1.2-5 cli_3.6.3 rappdirs_0.3.3
#> [88] fansi_1.0.6 S4Arrays_1.7.0 dplyr_1.1.4
#> [91] gtable_0.3.6 rstatix_0.7.2 sass_0.4.9
#> [94] digest_0.6.37 SparseArray_1.7.0 farver_2.1.2
#> [97] rjson_0.2.23 memoise_2.0.1 htmltools_0.5.8.1
#> [100] lifecycle_1.0.4 httr_1.4.7 GlobalOptions_0.1.2
#> [103] bit64_4.5.2