Thanks for your response, could you please elaborate what you mean?
Hello, Does anyone use DESeq2 for differential expression of "proteins" (data is an expression count matrix of proteins), and have suggestions on whether suitability/limitations of the package etc.? Thanks!
1 answer
What do your protein values look like? If they are intensity values rather than whole number values, why not use limma as many people do?
DESeq2 depends on whole number counts being negative binomially distributed.
If your protein "counts" look like:
Protein A: 0.4 Protein B: 4.583 Protein C: 3.582 Protein D: 2.492
Then you CAN'T use DESeq2 (see the decimals; they aren't whole numbers, they are CONTINUOUS numbers).
Just use the limma package for your DE analysis.
Oh I see what you mean now, yes my data consists of whole numbers as expression counts.
Log in to answer this question.