Entering edit mode
11.0 years ago
jack
▴
520
Hi,
I have raw count data of RNA seq. I want to normalize it. Which normalization methods do you recommend and which R packages I can use?
used DESeq2, and I want to do log transformation. I've got this error. what should I do? rld <- rlogTransformation(my_rawcount, blind=TRUE)
the error is : Error in (function (classes, fdef, mtable) : unable to find an inherited method for function ‘sizeFactors’ for signature ‘"matrix"’
You're giving a
matrix
to a function that expects aDESeqDataSet
object. Try creating the appropriate object first, likely with theDESeqDataSetFromMatrix()
function.