Correlation heatmap

# S4 method for bcbioRNASeq
plotCorrelationHeatmap(object,
  normalized = c("vst", "rlog"), ...)

Arguments

object

Object.

normalized

character(1) or logical(1). Normalization method to apply:

  • FALSE: Raw counts. When using a tximport-compatible caller, these are length scaled by default (see countsFromAbundance argument). When using a featureCounts-compatible caller, these are integer.

tximport caller-specific normalizations:

  • "tpm": Transcripts per million.

Additional gene-level-specific normalizations:

...

Passthrough to SummarizedExperiment method defined in acidplots. See acidplots::plotCorrelationHeatmap() for details.

Value

pheatmap.

Note

Updated 2019-09-15.

Methods (by class)

  • SingleCellExperiment: Applies pseudobulk() calculation to average gene expression at sample level prior to plotting.
    Passes ... to SummarizedExperiment method.

Examples

data(bcb) plotCorrelationHeatmap(bcb, method = "pearson")
#> Using vst counts.
#> Calculating correlation matrix using 'pearson' method.
plotCorrelationHeatmap(bcb, method = "spearman")
#> Using vst counts.
#> Calculating correlation matrix using 'spearman' method.