How to filter up and down regulated genes in a list of DE genes from DEseq?
I got some gene expression data sorted from differential expression analysis (used only significant genes <0.05 padj). I need to write the data in to a csv file with the following column names, Condition, Genes (up and down in each condition), counts (sum of genes either up or down regulated).
I can provide further information as needed.
• 1,870 views
•
link
1 answer
What is the original data file format? How the data is being arrange? Can you load it into excel and use filter function to seperate it?
• 0 views
•
link
Log in to answer this question.
Please be more clear about the data structures that you have. But if you are working with locus tags instead of gene names you can get filtered locus tags by
assuming you have your results from deseq2 in object
results. And then by going through your data frames by these indexes you can extract information you want.