Entering edit mode
6.1 years ago
maryak
▴
20
My TMM normalized RNA seq data has some positive values ,zero values and non zero values .Now what does these three types of values indicates?how i will know that a gene is expressed or not or differently expressed?
Please describe in more detail what you did. Also, read carefully the edgeR User Guide and DESeq2 vignette, they have plenty of information on how to perform differential expression analysis.
Positive values are non-zero. What you shouldn't see is negative values. All values are corrected counts of reads mapping to genes.
i have negative values as well.Can you please guide me what might went wrong?
Perhaps you should share then what you did?
edgeR expects raw counts as input, not transformed data. You should do:
Actually my raw count data was log 2 transformed so i reversed the transformation in order to get original counts
It would be much better if you can get access to the original data without having to tamper with it like this.
You do not actually do that... you return it to the linear scale and then subtract 1
If your input data is log2-transformed, then you just need to do:
This may explain the negative counts
sorry i missed to mention that the data is log2(count+1) transformed... so that why i did
but still unable to figure out wheres the problem
agree with WouterDeCoster here. Moreover, why would you do that (= the log2 transformation)?