Hi Everyone,
For differential expression analysis with DESeq package, i encountered problems with obtaining DESeq results. You can find my partial scripts below.
dds <- DESeqDataSetFromTximport(txi.salmon, colData = colData, ~condition)
it gives dds file as a Large DESeq Dataset and it contains 35721 elements. But when i want to see result like this code:
result_ctrl_vs_casin = results(dds, contrast=c("condition", "control","not_control_casin"), cooksCutoff=FALSE, independentFiltering=FALSE)
And it gives errors:
Error in results(dds, contrast = c("condition", "control", "not_control_casin"), :
couldn't find results. you should first run DESeq()
Thank you for helping, i am looking forward to hearing from you.
Did you run this :
dds <- DESeq(dds)
?Thanks for answer, it solves my problems!
i also used DESeq() function but it gave same errors.
Then you should start with that as a question and provide the error message.