View source: R/significantHeat.R
mostSignificantHeat | R Documentation |
Plots heatmap showing the expression of most variable genes
mostSignificantHeat(data, test, ntop = 50, a1 = NULL, a2 = NULL,
n1 = NULL, n2 = NULL)
data: |
normalized deseq matrix data (with varianceStablizing, rlog etc - eg. assay(vsd) |
test: |
output from results(dds) |
ntop: |
how many genes to display (the <ntop> most variable genes) |
a1: |
annotation of the samples |
a2: |
annotation of the samples |
n1: |
name of annotation in a1 |
n2: |
name of annotation in a2 |
vst <- varianceStabilizingTransformation(dds)
test <- results(dds)
mostSignificantHeat(data = assay(vst),test=test,ntop = 100, a1 = colData$cellLine, a2 = colData$treatment,n1="Cell Line",n2="Treatment")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.