Closed fulaibaowang closed 5 months ago
Hi
resultsDEWSeq
is actually a wrapper around DESeq2 results
function which you can read in detail here.
resultWindows <- resultsDEWSeq(ddw,
contrast = c("type", "group1", "group2"),
tidy = TRUE) %>% as_tibble
Here group1
is treated as the numerator (case) and group2
as control, and vice versa in the second case. So as you can imagine, depending on what group is considered as case and what is considered as control, result will change
Hi,
I see the order of group in
contrast
argument changes result ofresultsDEWSeq
, basicallyare different.
Can you elaborate a bit more about this? Thank you!