Hi
I have RNA seq gene expression matrix (RSEM counts) of control, positive treatment &negative treatment (two treatments, ex: knockdown, over expression)
How can I show (in single figure) some genes are unregulated in positive treatment, down regulated in negative treatment and normal in control, using any R package?
All three conditions are triplicated
Thanks in anticipation
Update: italic
The simple way would be to use top 500 variable genes and make a heatmap to show genes that are variable across different conditions
You can use
DESeq2
for differential expression analysis (see in here ) and plot the top 100 or 500 more expressed genes. As an example:thank you,
gave me the variable genes between samples, I have three samples per condition. I need variable genes per group, not samples. Any idea?