Hi Guys,
I have used edger and R to get the top gene-list that are up regulated and down, and I am able to export the list of genes significantly differentially expressed.
But I am not able to separate the gene list that is up regulated (+ve LogFC - log Fold change) and down regulated (-ve LogFC - log Fold change) from the significantly differentially expressed using the below syntax.
Using this
> geneList <- which(de[,1] == 1) and geneList <- which(de[,1] == -1)
but I am not able to export the Up/Down regulated gene list file out (write.csv(genelist,file="UP/Down Significant_genes_pvals.csv").
Could any one suggest me anything on this how to export directly ? Two file set with UP and Down regulated gene list.
Could you anyone help me on this how to separate each file with a list of up and down regulated genes using Edger and R.
Thanks a million
San
Please read the posting guide and edit your question to be more informative. In particular:
de
? I can probably guess that it is the output ofdecideTests
, but a good question should not require me to guess your circumstances.write.csv
just saves a set of row indices.Thanks Aaron
Still not enough information. Again... what is
de
? How did you generatede
? Please - give us some code to look at. I could also repeat my last two questions above, given that you didn't answer them either.