Entering edit mode
dds <- DESeq(dds) results <- results(dds) filteredResults <- results[which(abs(results$log2FoldChange) > 1 & results$pvalue < 0.05),] write.csv(as.data.frame(filteredResults), file = "DESeq2_filtered_results.csv")
I am attaching the picture of the filtered results, I am still getting log2fold change values in negative output of the filtered results, how should I resolve this?