Entering edit mode
10.1 years ago
Parham
★
1.6k
Hi,
I am practicing DESeq2 manual (Differential analysi s of count data - the DESeq2 package). When I do varianceStabilizingTransformation
with dds created from my data I get Error: is(cds, "CountDataSet") is not TRUE
. Surprisingly when I practiced the example from R's help page "Apply a variance stabilizing transformation (VST) to the count data", I got the same error again. Any suggestions? Please speak at non-bioinformatician level!
> dds <- makeExampleDESeqDataSet(m=6)
> vsd <- varianceStabilizingTransformation(dds)
Error: is(cds, "CountDataSet") is not TRUE
What version are you using that it's still looking for a
CountDataSet
? In other words, please post the output ofsessionInfo()
. My guess is that you just have an old version of DESeq2 that had a bug (probably from around the time that the transition was made to aDESeqDataSet
object).However when I wanted to load the data again, at one point (section 1.2.3) I had to load DESeq again. Do you know if it is a bug or something in the scripts? Or I have to load DESeq and then detach it again to not get the above error?
Hmmm, I recall mentioning that to Simon Anders and Alejandro Reyes months ago in an email. This is/was a bug in the pasilla package. Do you have the most recent version?
I am using R studio and it says all packaged are updated when I click update button. However here is the
sessionInfo()
output:I guess Alejandro never changed that. That's somewhat annoying. If you load pasilla first and Deseq2 second then perhaps that'll work.