Hi.
I have a question. I am working with a microarray with the next samples:
- control_rep_1
- control_rep_2
- virusA_rep_1
- virusA_rep_2
- virusA_rep_3
- virusB_rep_1
- virusB_rep_2
- virusB_rep_3
- virusA_virusB_rep_1
- virusA_virusB_rep_2
- virusA_virusB_rep_3
I have to extract the differentially expressed genes:
- control vs virusA
- control vs virusB
- control vs virusA_virus_B
- virusA vs virusB
I have to do so using Limma. In the case of the virusA, I am using the next design before to run the lmFit function:
virusA.design <- data.frame(REF = 1 , ctrl_vs_virusA = c(0,0,1,1,1,-1,-1,-1,-1,-1,-1))
virusA <- lmFit(normalised_data, virusA.design)
virusA <- eBayes(virusA)
But the adjusted p-values make no sense. I guess I am doing something wrong.
Do you have an idea about how should I design the different comparisons?
Thanks in advance,
Juan
limma
r
microarrays