Hi everyone.
I downloaded miRNA expression (Read_Count) from TCGA and then I want to normalized these read count using DESeq2. I have ever used this function to normalized count of RNA-seq from TCGA and it' work.
dds <- DESeqDataSetFromMatrix(countData = round(data), colData = coldData, design = ~TYPE)
sizeFactors(dds)
normalized_counts <- counts(dds, normalized=TRUE)
Now, I use the same code to normalize read count of miRNA expression but I got an error
dds <- DESeqDataSetFromMatrix(countData = round(data), colData = coldData, design = ~TYPE)
sizeFactors(dds)
NULL
How can I solve this situation or are there any method to normalize miRNA expression read count?
How did you get the
data
object?I used TCGAbiolink to download read count data from TCGA instead of read per million (RPM) and then I excluded some sample using my inclusion criteria (I did it in excel) and imported to Rstudio again and created count matrix from the following code
A few tips:
I will follow your suggestions. thanks for your suggestions