Hi Devon,
Here is my code:
data1<-as.matrix(df)
##do differential expression
library(DESeq2)
dds <- DESeqDataSetFromMatrix(countData = data1,colData = pdata,design = ~ condition )
#reference is group2,so up means up in group1 and down means down in group1.
dds$condition <- relevel(dds$condition, "group2")
dds=DESeq(dds)
res <- results(dds)
I wanted to know what test is used in this by default "Wald test or LRT test or no test " because I am not specifying anything in my command.