Closed mistrm82 closed 6 years ago
That error is an S4 message telling you that the signature (results, counts
) doesn't support a DESeqResults
and a matrix
. Instead, both plotDEGHeatmap()
and plotDEGPCA()
require a SummarizedExperiment
object for the counts
argument. You can pass in a DESeqTransform
(recommended), DESeqDataSet
(which will plot the normalized counts), or a bcbioRNASeq
object. We are using SummarizedExperiment
instead of a matrix
here because they contain necessary sample metadata in colData()
that we use for visualization in these functions.
this was working just fine but now I get this error:
I have a DESq results object as input so not sure why it's complaining