--- title: "Interacting with domino Objects" output: rmarkdown::html_vignette vignette: > %\VignetteIndexEntry{Interacting with domino Objects} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- ```{r, include = FALSE} knitr::opts_chunk$set( collapse = TRUE, comment = "#>", echo = TRUE, message = FALSE, warning = FALSE, fig.cap = "", tidy = TRUE ) options(timeout = 600) ``` In this tutorial, we will go into more detail on the structure of a domino object and the ways in which to access the data stored within. We will be using the domino object we built on the [Getting Started](https://fertiglab.github.io/dominoSignal) page. If you have not yet built a domino object, you can do so by following the instructions on the [Getting Started](https://fertiglab.github.io/dominoSignal/articles/dominoSignal) page.
Instructions to load data ```{r setup} set.seed(42) library(dominoSignal) # BiocFileCache helps with file management across sessions bfc <- BiocFileCache::BiocFileCache(ask = FALSE) data_url <- "https://zenodo.org/records/10951634/files/pbmc_domino_built.rds" tmp_path <- BiocFileCache::bfcrpath(bfc, data_url) dom <- readRDS(tmp_path) ```
## Object contents There is a great deal of information stored with the [domino object class](https://fertiglab.github.io/dominoSignal/reference/domino-class.html). The domino object is an S4 class object that contains a variety of information about the data set used to build the object, the calculated values, and the linkages between receptors, ligands, and transcription factors. The object is structured as follows (with some examples of the information stored within each slot: - Input Data - Information about the database used to construct the rl\_map - Inputted counts matrix - Inputted z-scored counts matrix - Inputted cluster labels - Inputted transcription factor activation scores - Calculated values - Differential expression p-values of transcription factors in each cluster - Correlation values between ligands and receptors - Median correlation between components of receptor complexes - Linkages - Complexes show the component genes of any complexes in the rl map - Receptor - ligand linkages as determined from the rl map - Transcription factor - target linkages as determined from the SCENIC analysis (or other regulon inference method) - Transcription factors that are differentially expressed in each cluster - Transcription factors that are correlated with receptors - Transcription factors that are correlated with receptors in each cluster - Receptors which are active in each cluster - Ligands that may activate a receptor in a given cluster (so-called incoming ligands; these may include ligands from outside the data set) - Signaling matrices - For each cluster, incoming ligands and the clusters within the data set that they are coming from - A summary of signaling between all clusters - Miscellaneous Information - Build information, which includes the parameters used to build the object in the `build_domino()` functions - The pared down receptor ligand map information used in building the object - The percent expression of receptors within each cluster For commonly accessed information (the number of cells, clusters, and some build information), the show and print methods for domino objects can be used. ```{r show} dom ``` ```{r print} print(dom) ``` ## Access functions To facilitate access to the information stored in the domino object, we have provided a collection of functions to retrieve specific items. These functions begin with "dom_" and can be listed using `ls()`. ```{r list-functions} ls("package:dominoSignal", pattern = "^dom_") ``` ### Input data When creating a domino object with the `create_domino()` function, several inputs are required which are then stored in the domino object itself. These include cluster labels, the counts matrix, z-scored counts matrix, transcription factor activation scores, and the R-L database used in `create_rl_map_cellphonedb()`. For example, to access the cluster names in the domino object: ```{r cluster-names} dom_clusters(dom) ``` Setting an argument `labels = TRUE` will return the vector of cluster labels for each cell rather than the unique cluster names. To access the counts: ```{r counts} count_matrix <- dom_counts(dom) knitr::kable(count_matrix[1:5, 1:5]) ``` Or z-scored counts: ```{r zcounts} z_matrix <- dom_zscores(dom) knitr::kable(z_matrix[1:5, 1:5]) ``` The transcription factor activation scores can be similarly accessed: ```{r tf_activation} activation_matrix <- dom_tf_activation(dom) knitr::kable(activation_matrix[1:5, 1:5]) ``` Information about the database referenced for ligand - receptor pairs and composition of protein complexes can be extracted from the `dom_database()` function. By default, the function returns the name(s) of the database(s) used: ```{r db-name} dom_database(dom) ``` If you would like to view the entire ligand - receptor map, set `name_only = FALSE`: ```{r db-all} db_matrix <- dom_database(dom, name_only = FALSE) knitr::kable(db_matrix[1:5, 1:5]) ``` ### Calculations Active transcription factors in each cluster are determined by conducting Wilcoxon rank sum tests for each transcription factor where the transcription factor activity scores amongst all cells in a cluster are tested against the activity scores of all cells outside of the cluster. The p-values for the one-sided test for greater activity within the cluster compared to other cells can be accessed with the `dom_de()` function. ```{r de} de_matrix <- dom_de(dom) knitr::kable(de_matrix[1:5, 1:5]) ``` Linkage between receptors and transcription factors is assessed by Spearman correlation between transcription factor activity scores and scaled expression of receptor-encoding genes across all cells in the data set. Spearman coefficients can be accessed with the `dom_correlations()` function. Setting `type` to "complex" will return the median correlation between components of receptor complexes; the default ("rl") will return receptor - ligand correlations. ```{r correlations} cor_matrix <- dom_correlations(dom) knitr::kable(cor_matrix[1:5, 1:5]) ``` ### Linkages Linkages between ligands, receptors, and transcription factors can be accessed in several different ways, depending on the specific link and the scope desired. The `dom_linkages()` function has three arguments - the first, like all of our access functions, is for the domino object. The second, `link_type`, is used to specify which linkages are desired (options are complexes, receptor - ligand, tf - target, or tf - receptor). The third argument, `by_cluster`, determines whether the linkages returned are arranged by cluster (though this does change the available linkage types to tf - receptor, receptor, or incoming-ligand). For example, to access the complexes used across the dataset: ```{r, complex} complex_links <- dom_linkages(dom, link_type = "complexes") # Look for components of NODAL receptor complex complex_links$NODAL_receptor ``` To view incoming ligands to each cluster: ```{r, lig-by-clust} incoming_links <- dom_linkages(dom, link_type = "incoming-ligand", by_cluster = TRUE) # Check incoming signals to dendritic cells incoming_links$dendritic_cell ``` If, for some reason, you find yourself in need of the entire linkage structure (not recommended), it can be accessed through its slot name; domino objects are S4 objects. ```{r link} all_linkages <- slot(dom, "linkages") # Names of all sub-structures: names(all_linkages) ``` Alternately, to obtain a simplified list of receptors, ligands, and\/or features in the domino object, use the `dom_network_items()` function. To pull all transcription factors associated with the dendritic cell cluster: ```{r collate} dc_tfs <- dom_network_items(dom, "dendritic_cell", return = "features") head(dc_tfs) ``` ### Signaling Matrices The averaged z-scored expression of ligands and receptors between different clusters can be accessed in matrix form. ```{r global-signalling} signal_matrix <- dom_signaling(dom) knitr::kable(signal_matrix) ``` To view signaling to a specific cluster from the other clusters, set the `cluster` argument to the cluster name. ```{r clust-signal} dc_matrix <- dom_signaling(dom, "dendritic_cell") knitr::kable(dc_matrix) ``` ### Build information To keep track of the options set when running `build_domino()`, they are stored within the domino object itself. To view these options, use the `dom_info()` function. ```{r info} dom_info(dom) ``` ## Continued Development Since dominoSignal is a package still being developed, there are new functions and features that will be implemented in future versions. In the meantime, we have put together further information on [plotting](https://fertiglab.github.io/dominoSignal/articles/plotting_vignette) and an example analysis can be viewed on our [Getting Started](https://fertiglab.github.io/dominoSignal/articles/dominoSignal) page. Additionally, if you find any bugs, have further questions, or want to share an idea, please let us know [here](https://github.com/FertigLab/dominoSignal/issues).
Vignette Build Information Date last built and session information: ```{r} Sys.Date() sessionInfo() ```