I am trying to find the name of the genes significantly different genes that have been generated after running DESeq, I run the following code:
results(dds1and2, contrast = c("Time","A0","G0"))
length(which(resA0vsG0$padj < 0.01))
rownames(results[which(resA0vsG0$padj < 0.01), ])
However I receive the following error:
Error in results[which(resA0vsG0$padj < 0.01), ] : object of type 'closure' is not subsettable
Is there another way to find the names of what genes are different? The DESeq generates a set of values rather than a dataset I cant view the data