Annotation clariom D microarray
1
0
Entering edit mode
Luca • 0
@lucapiacentini-9597
Last seen 9 weeks ago
Italy

Hi, I am working with the Clariom D microarray, and I have annotated the PROBEID via the "clariomdhumantranscriptcluster.db" for some identifiers. However, some of the "ENSEMBL" (or other gene identifier) annotated probes does not have the corresponding transcript ID, e.g. "ENSEMBLTRANS." That sounds a bit bizarre. Is there a reason for this? Below, I'll report the code chunk I used. Thank you.


library(oligo)
library(affycoretools)
library(clariomdhumantranscriptcluster.db)
dat <- read.celfiles(list.celfiles())
eset <- rma(dat)
eset <- annotateEset(eset, clariomdhumantranscriptcluster.db, columns = c("ACCNUM","PROBEID", "ENTREZID", "SYMBOL", "GENENAME","ENSEMBL","ENSEMBLTRANS","REFSEQ","EVIDENCE"))
clariomdhumantranscriptcluster.db oligo • 1.3k views
ADD COMMENT
0
Entering edit mode
@james-w-macdonald-5106
Last seen 5 days ago
United States

It's not really bizarre at all. The clariomdhumantranscriptcluster.db package really only has two tables in the underlying database that are used to do the annotations. One is called 'accessions' and one is called 'probes'. The 'probes' table maps the Affy probeset ID to NCBI Gene IDs.

So if you ask for anything more than that (like say Ensembl annotations) what happens is that the org.Hs.eg.db package is used to map from NCBI Gene ID to either Ensembl Gene ID or Ensembl Transcript ID. But that is no easy task! So what you are getting are the current mappings of NCBI Gene ID to Ensembl IDs, based on what NCBI thinks matches. It's hard enough to get the two annotation services to agree on genes, not to mention transcripts. So you should expect what you got, because mapping from NCBI to EBI/EMBL and vice versa is not trivial.

ADD COMMENT
0
Entering edit mode

Ok, thank you again, James, for your hint. I understand the problem right now... I'm going to try to play with the gene/ transcript annotation whenever it's required.

ADD REPLY

Login before adding your answer.

Traffic: 420 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6