I want to find interaction between type (A and B) and dosage (6 and 26) in RNA-seq data. The design was:
(Intercept) typeA dosage6 typeA:dosage6
B26 1 0 0 0
B26 1 0 0 0
A26 1 1 0 0
A26 1 1 0 0
A26 1 1 0 0
A6 1 1 1 1
A6 1 1 1 1
A6 1 1 1 1
B6 1 0 1 0
B6 1 0 1 0
B6 1 0 1 0
B26 1 0 0 0
My differential expression analysis output result using edgeR R package is:
tag typeA dosage6 typeA.dosage6
ENSG00000000305 -1 1 -1
ENSG00000000308 1 1 -1
ENSG00000000340 -1 1 -1
ENSG00000000378 0 0 0
ENSG00000000420 0 0 0
ENSG00000000441 0 0 0
ENSG00000000486 1 -1 -1
ENSG00000001127 -1 -1 1
How I could understand if there is any interaction between type and dosage? in the other hand how this result could help me to find out the interaction?
Could you post your contrasts matrix, please