Hello, I am using dds object for my RNA-seq data and I am creating PCA with my gene expression data, I am not getting clear visualization of my treatment or control. There is any other exploratory analysis or way to visualize clear separation between control or treated groups. I am using these commands in R studio:
dds <- DESeqDataSetFromMatrix(countData = new_count, colData = sample.data, design = ~ outcome_txt)
vsddds <- vst(dds, blind = FALSE)
plotPCA(vsddds, "outcome_txt")
Thank you so much. I will look into it