Entering edit mode
Enter the body of text here Recently, I use the DESeq2 to analyze a data, but there is a question is that the DESeq2 tutorials point the quickly start ,which use the code ```
dds <- DESeqDataSetFromMatrix(countData = cts,
colData = coldata,
design= ~ batch + condition)
dds <- DESeq(dds)
resultsNames(dds) # lists the coefficients
res <- results(dds, name="condition_trt_vs_untrt")
# or to shrink log fold changes association with condition:
res <- lfcShrink(dds, coef="condition_trt_vs_untrt", type="apeglm")
```.
So, I want to know the normalization when and how what for the difference gene, and that the VST and RLOG method processed data, which could for different gene expression analysis?