View source: R/plots-mgheatmap.R
mgheatmap | R Documentation |
Before we get started, note that you probably want to use mgheatmap2()
.
This function encapsulates many common "moves" you'll make when trying to make a heatmap, especially if you are trying to show geneset activity across a panel of samples.
NOTE: this function will almost certainly reorder the rows of the
input matrix. If you are concatentating Heatmap objects together horizontally
(ie. you if you want to use a rowAnnotation along side the returned heatmap),
you must reorder the rows of the annotation data.frame, ie.
ranno.df <- ranno.df[rownames(out@matrix),]
mgheatmap(
x,
gdb = NULL,
col = NULL,
aggregate.by = c("none", "ewm", "ewz", "zscore"),
split = TRUE,
scores = NULL,
gs.order = NULL,
name = NULL,
rm.collection.prefix = TRUE,
rm.dups = FALSE,
recenter = FALSE,
rescale = FALSE,
center = TRUE,
scale = TRUE,
rename.rows = NULL,
zero_center_colramp = NULL,
zlim = NULL,
transpose = FALSE,
...
)
x |
the data matrix |
gdb |
|
col |
a colorRamp(2) function |
aggregate.by |
the method used to generate single-sample geneset
scores. Default is |
split |
introduce row-segmentation based on genesets or collections?
Defaults is |
scores |
If |
gs.order |
This is experimental, and is here to help order the order
of the genesets (or genesets collection) in a different way than the
default. By default, |
name |
passed down to |
rm.collection.prefix |
When |
rm.dups |
if |
recenter |
do you want to mean center the rows of the heatmap matrix
prior to calling |
rescale |
do you want to standardize the row variance to one on the
values of the heatmap matrix prior to calling
|
center , scale |
boolean parameters passed down into the the single
sample gene set scoring methods defined by |
rename.rows |
defaults to |
zero_center_colramp |
Used to specify the type of color ramp to generate
when |
zlim |
Used to control the color saturation of the heatmap when the
|
transpose |
Flip display so that rows are columns. Default is |
... |
parameters to send down to |
More info here.
A Heatmap
object.
This function leverages renameRows()
so that you can better customize the
output of your heatmaps by tweaking its rownames.
If you are plotting a gene-level heatmap (ie. aggregate.by == "none"``) and the
rownames()are gene identifiers, but you want the rownames of the heatmap to be gene symbols. You can perform this renaming using the
rename.rows' parameter.
If rename.rows
is NULL
, then nothing is done.
If rename.rows
is a string
, then we assume that x
has an associated
metadata data.frame
over its rows and that rename.rows
names one of
its columns, ie. DGEList$genes[[rename.rows]]
or
fData(ExpressionSet)[[rename.rows]]
. The values in that column will
be swapped out for x
's rownames
If rename.rows
is a two-column data.frame, the first column is assumed
to be rownames(x)
and the second is what you want to rename it to.
When there are duplicates in the renamed rownames, the rename.duplicates
...
parameter dictates the behavior. This will happen, for instance, if
you are trying to rename the rows of an affy matrix to gene symbols, where
we have multiple probe ids for one gene. When rename.duplicates
is set to
"original"
, one of the rows will get the new name, and the remaning
duplicate rows will keep the rownames they came in with. When set to
"make.unique"
, the new names will contain *.1
, *.2
, etc. suffixes,
as you would get from using base::make.unique()
.
Maybe you are aggregating the expression scores into geneset scores, and
you don't want the rownames of the heatmap to be collection;;name
(or just
name
when rm.collection.prefx = TRUE
), you can pass in a two column
data.frame
, where the first column is collection;name
and the second
is the name you want to rename that to. There is an example of this in
the "Examples" section here.
mgheatmap2()
library(ComplexHeatmap)
vm <- exampleExpressionSet()
gdb <- exampleGeneSetDb()
col.anno <- ComplexHeatmap::HeatmapAnnotation(
df = vm$targets[, c("Cancer_Status", "PAM50subtype")],
col = list(
Cancer_Status = c(normal = "grey", tumor = "red"),
PAM50subtype = c(Basal = "purple", Her2 = "green", LumA = "orange")))
mgh <- mgheatmap(vm, gdb, aggregate.by = "ewm", split=TRUE,
top_annotation = col.anno, show_column_names = FALSE,
column_title = "Gene Set Activity in BRCA subset")
# Maybe you want the rownames of the matrix to use spaces instead of "_"
rr <- geneSets(gdb)[, "name", drop = FALSE]
rr$newname <- gsub("_", " ", rr$name)
mg2 <- mgheatmap(vm, gdb, aggregate.by='ewm', split=TRUE,
top_annotation = col.anno, show_column_names = FALSE,
column_title = "Gene Set Activity in BRCA subset",
rename.rows = rr)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.