Hi I have multiple groups to compare using DESeq2 and used contrast argument in results function to find DE. But now i would like to extract the normalized expression based on compared group for the heatmap and the further merging it to the results of corresponding comparison.
I was thinking the same logic as the "results function" but it seems not working.
counts(dds, normalized=T, c("Group", "A1", "A2"))
counts(dds, normalized=T, c("Group", "A1", "A3"))
counts(dds, normalized=T, c("Group", "A1", "A4"))
counts(dds, normalized=T, c("Group", "B1", "A2"))
...
etc
I get it there is no arguments in counts function to use contrast type group selection but i got 28 groups and 378 paired wise combinations DE. now tell me how to subset it, without automate it ?
Counts will give you the normalized counts for each sample. That's all.
Thats what i need but by the groups i select.