This function is a simplified version of plotHeatmap() that is
optimized for handling a DESeqResults object rather a gene vector. All of
the optional parameters for plotHeatmap() are also available to this
function.
plotDEGHeatmap(object, counts, ...) # S4 method for DESeqResults,DESeqTransform plotDEGHeatmap(object, counts, lfc = 0, ...) # S4 method for DESeqResults,DESeqDataSet plotDEGHeatmap(object, counts, lfc = 0, title = TRUE, ...)
| object | Object. |
|---|---|
| counts | Secondary object containing a normalized count matrix. |
| ... | Passthrough arguments to |
| lfc | log2 fold change ratio cutoff. |
| title | Optional. Plot title. |
Graphical output only.
Other Heatmaps: plotCorrelationHeatmap,
plotHeatmap
# DESeqResults, DESeqTransform plotDEGHeatmap(res, rld)#> #>#># DESeqResults, DESeqDataSet# NOT RUN { plotDEGHeatmap(res, dds) # }