Entering edit mode
2.2 years ago
Amr
▴
180
How to extract the results table for specific samples names after normalization by DESeq in R?
After I did normalization in R with DESeq2 I got the results table with results function, now I need to get the results but not for all samples, I just need for 2 samples, how to extract it?
res <- results(dds)
res
log2 fold change (MLE): condition Normal Cell vs Cancer Cell
Thanks in advance
You are not "extracting" the result table. You are doing a completely new the deseq2 analysis with a smaller set of samples from the original dataframe (
countdata
)Yes you are right, but is there another way to extract them after making normalization for all samples?