Hello everyone!
I'm new at RNAseq analysis, sorry if it is a basic question, I tried search online but none of those tips helped me. Well, I've tried to perform DESeq2 from a public data avaliable on GEO (GSE198437) with the following codes
dds <- DESeqDataSetFromMatrix(countData=countsdata, colData=coldata, design=~condition)
Before that, I've remove the 3 first columns (gene name, gene code and ID) and made a matrix.
But I keep getting this following error:
Error in DESeqDataSet(se, design = design, ignoreRank) :
some values in assay are negative
I use any(countsdata < 0) and give me TRUE for negative values, but when I take a look at my matrix I don't see any negative value.
Anyone knows what can I do to perform "DESeqDataSetFromMatrix" in this case?