how can i see the expression level? and which result shows if a gene is differentially expressed or not?
Also, how can i add the row names containing the name of the genes? Here's my command line:
> dds <- DESeqDataSetFromMatrix(countData=countsTable, colData = colData, design=~condition)
> dds$condition <- relevel(dds$condition, ref = "14d")
> colData(dds)$condition <- relevel(colData(dds)$condition, "14d")