Description Usage Arguments Details Value Many additional characteristics of the plot can be adjusted using discrete inputs Customized annotations Author(s) See Also Examples
Given a set of genes, cells/samples, and metadata names for column annotations, this function will retrieve the expression data for those genes and cells, and the annotation data for those cells.
It will then utilize these data to make a heatmap using the pheatmap
function of either the pheatmap
(default) or ComplexHeatmap
package.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | dittoHeatmap(
object,
genes = getGenes(object, assay),
metas = NULL,
cells.use = NULL,
annot.by = NULL,
order.by = .default_order(object, annot.by),
main = NA,
cell.names.meta = NULL,
assay = .default_assay(object),
slot = .default_slot(object),
heatmap.colors = colorRampPalette(c("blue", "white", "red"))(50),
scaled.to.max = FALSE,
heatmap.colors.max.scaled = colorRampPalette(c("white", "red"))(25),
annot.colors = c(dittoColors(), dittoColors(1)[seq_len(7)]),
annotation_col = NULL,
annotation_colors = NULL,
data.out = FALSE,
highlight.features = NULL,
highlight.genes = NULL,
show_colnames = isBulk(object),
show_rownames = TRUE,
scale = "row",
cluster_cols = isBulk(object),
border_color = NA,
legend_breaks = NA,
breaks = NA,
complex = FALSE,
...
)
|
object |
A Seurat, SingleCellExperiment, or SummarizedExperiment object. |
genes |
String vector, c("gene1","gene2","gene3",...) = the list of genes to put in the heatmap. If not provided, defaults to all genes of the object / assay. |
metas |
String vector, c("meta1","meta2","meta3",...) = the list of metadata variables to put in the heatmap. |
cells.use |
String vector of cells'/samples' names OR an integer vector specifying the indices of cells/samples which should be included. Alternatively, a Logical vector, the same length as the number of cells in the object, which sets which cells to include. |
annot.by |
String name of any metadata slots containing how the cells/samples should be annotated. |
order.by |
Single string, string vector, or numeric vector which sets how cells/samples (columns) will be ordered when Strings should be the name of a gene, or metadata slot, but can also be multiple such values in order of priority. Alternatively, can be a numeric vector which gives the column index order directly. |
main |
String that sets the title for the heatmap. |
cell.names.meta |
quoted "name" of a meta.data slot to use for naming the columns instead of using the raw cell/sample names. |
assay, slot |
single strings or integer that set which expression data to use. See |
heatmap.colors |
the colors to use within the heatmap when (default setting) |
scaled.to.max |
Logical, |
heatmap.colors.max.scaled |
the colors to use within the heatmap when |
annot.colors |
String (color) vector where each color will be assigned to an individual annotation in the generated annotation bars. |
data.out |
Logical. When set to |
highlight.features |
String vector of genes/metadata whose names you would like to show. Only these genes/metadata will be named in the resulting heatmap. |
highlight.genes |
Deprecated, use |
show_colnames, show_rownames, scale, annotation_col, annotation_colors |
arguments passed to
|
cluster_cols, border_color, legend_breaks, breaks, ... |
other arguments passed to |
complex |
Logical which sets whether the heatmap should be generated with ComplexHeatmap ( |
This function serves as a wrapper for creating heatmaps from bulk or single-cell RNAseq data with pheatmap::pheatmap
,
by essentially automating the data extraction and annotation building steps.
(Or alternatively with ComplexHeatmap::pheatmap
if complex
is set to true
.
The function will extract the expression matrix for a set of genes
and/or an optional subset of cells / samples to use via cells.use
,
This matrix is either left as is, default (for scaling within the ultimate call to pheatmap), or if scaled.to.max = TRUE
, is scaled by dividing each row by its maximum value.
When provided with a set of metadata slot names to use for building annotations (with the annot.by
input),
the relevant metadata is retrieved from the object
and compiled into a pheatmap
-ready annotation_col
input.
The input annot.colors
is used to establish the set of colors that should be used for building a pheatmap
-ready annotation_colors
input as well,
unless such an input has been provided by the user. See below for further details.
A pheatmap
object.
Alternatively, if complex
is set to TRUE
, a Heatmap
Alternatively, if data.out
is set to TRUE
, a list containing all arguments that would have be passed to pheatmap to generate such a heatmap.
The cells can be ordered in a set way using the order.by
input.
Such ordering happens by default for single-cell RNAseq data when any metadata are provided to annot.by
as it is often unfeasible to cluster thousands of cells.
A plot title can be added with main
.
Gene or cell/sample names can be hidden with show_rownames
and show_colnames
, respectively, or...
Particular features can also be selected for labeling using the highlight.features
input.
Names of all cells/samples can be replaced with the contents of a metadata slot using the cell.names.meta
input.
Additional tweaks are possible through use of pheatmap
inputs which will be directly passed through.
Some examples of useful pheatmap
parameters are:
cluster_cols
and cluster_rows
for controlling clustering.
Note: cluster_cols will always be over-written to be FALSE
when the input order.by
is used above.
treeheight_row
and treeheight_col
for setting how large the trees on the side/top should be drawn.
cutree_col
and cutree_row
for spliting the heatmap based on kmeans clustering
When complex
is set to TRUE
, additional inputs for the Heatmap
function can be given as well.
Some examples:
use_raster
to have the heatmap rasterized/flattened to pixels which can make working with large heatmaps in a figure editor, like Illustrator, simpler.
name
to give the heatmap color scale a custom title.
In typical operation, dittoHeatmap pulls metadata annotations given to annot.by
to build a pheatmap-annotation_col
input,
then it uses the colors provided to annot.colors
to create the pheatmap-annotation_colors
input which sets the annotation coloring.
Specifically...
colors for the values of discrete metadata are pulled from the start of the annot.colors
vector, in the order that they are given to annot.by
colors for the values of continuous metadata are pulled from the end of the annot.colors
vector, in the order that they are given to annot.by
To customize colors or add additional column or row annotations, users can also provide annotation_colors
, annotation_col
, or annotation_row
pheatmap-inputs directly.
General structure is described below, but see pheatmap
for additional details and examples.
annotation_col
= a data.frame with rownames of the barcodes/names of all cells/samples in the dataset & columns representing annotations.
Names of columns are used as the annotation titles. *dittoSeq will append any annot.by
annotations to this dataframe.
annotation_row
= a data.frame with rownames of the genes/feature of the dataset & columns representing annotations.
Names of columns are used as the annotation titles.
annotation_colors
= a named list of string (color) vectors.
Vectors must be named by the row or column annotation title that they are associated with.
Optionally, individual colors can be named with the values that they should be associated with.
Partial annotation_colors
lists (containing vectors for only certain annotations) will have colors for left out annotations filled in automatically.
For such filling, annot.colors
are pulled for column annotations first, then for row annotations.
Daniel Bunis and Jared Andrews
pheatmap::pheatmap
, for how to add additional heatmap tweaks,
OR or ComplexHeatmap::pheatmap
and Heatmap
for when you want to turn on rasterization or any additional customizations offered by this fantastic package.
metaLevels
for helping to create manual annotation_colors inputs.
This function universally checks the options/levels of a string, factor (filled only by default), or numerical metadata.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | example(importDittoBulk, echo = FALSE)
scRNA <- setBulk(myRNA, FALSE)
# We now have two SCEs for our example purposes:
# 'myRNA' will be treated as a bulk RNAseq dataset
# 'scRNA' will be treated as a single-cell RNAseq dataset
# Pick a set of genes
genes <- getGenes(myRNA)[1:30]
# Make a heatmap with cells/samples annotated by their clusters
dittoHeatmap(myRNA, genes,
annot.by = "clustering")
# For single-cell data, you will typically have more cells than can be
# clustered quickly. Thus, cell clustering is turned off by default for
# single-cell data.
dittoHeatmap(scRNA, genes,
annot.by = "clustering")
# Using the 'order.by' input:
# Ordering by a useful metadata or gene is often helpful.
# For single-cell data, order.by defaults to the first element given to
# annot.by.
# For bulk data, order.by must be set separately.
dittoHeatmap(myRNA, genes,
annot.by = "clustering",
order.by = "clustering",
cluster_cols = FALSE)
# 'order.by' can be multiple metadata/genes, or a vector of indexes directly
dittoHeatmap(scRNA, genes,
annot.by = "clustering",
order.by = c("clustering", "timepoint"))
dittoHeatmap(scRNA, genes,
annot.by = "clustering",
order.by = ncol(scRNA):1)
# When there are many cells, showing names becomes less useful.
# Names can be turned off with the 'show_colnames' parameter.
dittoHeatmap(scRNA, genes,
annot.by = "groups",
show_colnames = FALSE)
# When theree are many many cells & genes, rasterization can be super useful
# as well.
# Rasterization, or flattening of the distinct color objects to a matrix of
# pixels, is the default for large heatmaps in the ComplexHeatmap package,
# and you can have the heatmap rendered with this package (rather than the
# pheatmap package) by setting 'complex = TRUE'.
# Our data here is too small to hit that defaulting switch, so lets give
# the direct input, 'use_raster' as well:
if (requireNamespace("ComplexHeatmap")) { # Checks if you have the package.
dittoHeatmap(scRNA, genes, annot.by = "groups", show_colnames = FALSE,
complex = TRUE,
use_raster = TRUE)
}
# Additionally, it is recommended for single-cell data that the parameter
# scaled.to.max be set to TRUE, or scale be "none" and turned off altogether,
# because these data are generally enriched for zeros that otherwise get
# scaled to a negative value.
dittoHeatmap(myRNA, genes, annot.by = "groups",
order.by = "groups", show_colnames = FALSE,
scaled.to.max = TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.