TCGA single dataset normalization
how can i resolve it
dds <- DESeqDataSetFromMatrix(countData = PAADgenomicMatrix, colData = Samples, design = ~ submitter_id.samples)
Error in DESeqDataSet(se, design = design, ignoreRank) :
some values in assay are negative
• 997 views
•
link
1 answer
The error is pretty clean. You have a counts table with negative counts. That indicates that these are not raw counts which should be positive integers (or floats depending on the quantification method). DESeq2 requires raw counts. What are these data?
• 0 views
•
link
Log in to answer this question.