The paired experiments produce the following results. Which seems clearly indicates the differential expression, however neither Deseq2, nor Limma does not give that gene is differentially expressed. (Returns p-value about 0.5).
Is it something like a known problem ? Or what can be the reason for that ?
Code:
deseq2:
cmp <- DESeqDataSetFromMatrix(countData = as.matrix(counts),
colData = coldata,
design= ~ rep + cond)
limma:
cmp <- model.matrix(~0 + cond + rep)
PS
The example shown - is for one gene - of course the measurements are for all genes - just one is shown.
We see such kind of problem systematically - above is just one illustrative example - but similar things happen a lot.
By "paired" experiment - we mean similar to "paired" t-test https://en.wikipedia.org/wiki/Paired_difference_test That means experiments which stand in the same column (for condition 1 and condition 2) are made simultaneously in the same environment. While row-axis - a bit of change of environment - another day. That is why we looking for "paired" comparison. Experiments on the same column - paired.
What is 'the paired experiments'? Are you running only a single gene? Are these counts (or whatever this is) normalized. More details are needed.
All genes. Just that an example where we have problem. Paired - as usual - in experiment two samples condition 1 and codition 2, and repeat 4 times.
You're still being quite unclear. Please differentiate paired experiments vs whatever other experiment you're running.
Pairs are in columns
Please be clearer - What are the paired experiments, and how do they "clearly indicate" differential expression? What are DEseq2 and limma missing in your opinion? Please understand that you're giving barely relevant information piecemeal, which is a really really bad way to seek help.
Maybe something is getting lost in translation, but where are you getting the "paired experiment" results from?
I believe the OP refers to a "paired" design, as in a "paired t-test", otherwise known as a repeated measures design. See section 9.4.1 of the limma manual.