Entering edit mode
Enter the body of text here
Code should be placed in three backticks as shown below
> dds <- DESeqDataSetFromMatrix(countData = cts,
+ colData = coldata,
+ design = ~ condition)
Error in DESeqDataSet(se, design = design, ignoreRank) :
NA values are not allowed in the count matrix
> any(is.na(cts))
[1] TRUE
> all(is.numeric(cts))
[1] TRUE
Hello,
I don't have any missing values in my data, but I keep getting such message.
Dose anybody know the solution? Thanks