HI every one I am new to RNA seq analyisis using R. I Am usig DESeq 2 for my analysis. I have four different Samples with three replicates each and I want to compare all of them with control plk. I tried using contrast but i can only compare two factors using contrast.
condition <- factor(c("bio","bio", "bio","Glu","Glu", "Glu","NO","NO","NO","plk","plk","plk"))
dds <- DESeqDataSetFromMatrix (countData = counts, colData = colData, design = ~condition) res <- results(dds, contrast = c("condition","Glu","bio"))
