how to get the file of CG sites correspond to gene about Infinium MethylationEPIC platform

how to get the file of CG sites correspond to gene about Infinium MethylationEPIC platform

1

I have DNA methlation data. I want get the relationship of cgXXX and gene symbol. But I don’t know where to get this relationship file.


site


cg


gene


symbol

• 26 views

The “Manifest” files with that info are available at the Illumina website.

Much more easily, in R, you can retrieve them like this:

library(IlluminaHumanMethylationEPICanno.ilm10b4.hg19)
anno <- as.data.frame(getAnnotation(IlluminaHumanMethylationEPICanno.ilm10b4.hg19))

To get a table with probe IDs and associated information including genes, etc. Or you can use the coordinates shown there to map to genes via other packages (e.g. ChIPseeker).


Login
before adding your answer.

Traffic: 2282 users visited in the last hour

Read more here: Source link