Infinium probes to Ensembl IDs
1
0
Entering edit mode
3.6 years ago

Dear Colleauges, I'm looking for an R package that has the Illumina Infinium 450K probes annotated to Ensembl IDs.

Thanks all!

R • 1.3k views
ADD COMMENT
1
Entering edit mode
3.6 years ago

If I want to do this, here is the approach: using IlluminaHumanMethylation450kanno.ilmn12.hg19 to get genes (by gene symbol) , then use biomaRt to get associated ENS ID.

ADD COMMENT
0
Entering edit mode

Thanks a lot Hamid. Maybe also useful to note that from your hint I got to this package:

IlluminaHumanMethylationEPICanno.ilm10b4.hg19

which annotates EPIC Array, and has 2 useful columns: probes that are from 450k array, and ENST annotation. Although not all 450K array probes are in EPIC, but this covers the vast majority of them.

library(IlluminaHumanMethylation450kanno.ilmn12.hg19)
data("Other")
450kAnn= as.data.frame(Other)
detach("package:IlluminaHumanMethylation450kanno.ilmn12.hg19", unload=TRUE)

library("IlluminaHumanMethylationEPICanno.ilm10b4.hg19")
data("Other")
EPIC= as.data.frame(Other)
EPIC= EPIC[rownames(EPIC) %in% rownames(450kAnn),]
ADD REPLY

Login before adding your answer.

Traffic: 1812 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