Entering edit mode
3.4 years ago
enh
•
0
I performed a DE pairwise analysis between conditionA and conditionB using DESeq2 and proceeded to kegg pathway analysis where I get the pathways downregulated and upregulated for my conditionAvsconditionB comparison, but I'm unsure of how to interpret the results. Are the pathways upregulated in conditionA compared to conditionB or are they upregulated in conditionB compared to conditionA?
My foundations are lacking and I haven't been able to find any resources the explain how to interpret the results any help/clarifications are greatly appreciated.
Hi!
Would you like to share with us the result from running the next command on your DESeq object?
resultsNames(dds)
We can see there whether comparison was done as conditionA vs conditionB or vice versa.
Best regards!
Hi Rodolfo, I was actually able to make sense of the returns by referencing a different post on here! the comparison was done as conditionA vs conditionB, thank you!!
It´s alright! This is a helpful function if you are not sure about the direction of comparison. As a suggestion, when you construct your DESeq object use the
relevel
function to notice DESeq2 what is your reference (or control) group.