Entering edit mode
6.0 years ago
LuisNagano
▴
90
Hi guys, i want to export the rlog values from DESeq2 or vsd, but i only got the dds counts, using the following script:
countsdds <- counts(dds, normalized = TRUE)
write.csv(countsdds, file="dds_norm_counts.csv")
Is there a way to export rlog values?
Thanks for your help!
Thank you, WouterDeCoster, but i don't want to apply the functions "rlog" or "vst", I just did that. I want to export the output values after run the function, like .csv or .xlsx format table to my directory.