This is a test version of Biostars. For the public version, visit https://www.biostars.org.
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
deseq2 normalization

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?

Log in to answer this question.