Thank you, that's perfect!!!
Hello everybody,
My question is: how do I get a gene list using Bioconductor from a .CEL file for the HG_U95Av2 array(from the arrays at http://www.broadinstitute.org/cgi-bin/cancer/publications/pub_paper.cgi?mode=view&paper_id=75)?
I tried following the answer in this post, but I couldn't do it. I can't figure out how to use the annotation library I found in Bioconductor look for gahgu95av2)
I already figured out how to do normalization of the files using justRMA, now I need the gene annotations for the numbers.
Your hints and and answers would be really helpful:-) Thank you!
Cheers,
Maria
1 answer
source("http://bioconductor.org/biocLite.R")
biocLite("hgu95av2.db")
library(hgu95av2.db)
Annot = data.frame(SYMBOL=sapply(contents(hgu95av2SYMBOL), paste, collapse=","),
DESC=sapply(contents(hgu95av2GENENAME), paste, collapse=","),
ENTREZID=sapply(contents(hgu95av2ENTREZID), paste, collapse=","),
ENSEMBLID=sapply(contents(hgu95av2ENSEMBL), paste, collapse=","))
Annot$SYMBOL will contain the gene names for your IDs.
Thank you so much, Komal:-) I never had a bioinformatics course or worked with Bioconductor, so I was really confused:-) Thank you for your time!
Log in to answer this question.
Can you show how the gene ids look like?
1000_at, 1001_at etc:-)