Nimblegen DMA methylation microarray data analysis
2
0
Entering edit mode
8.0 years ago
EpiExplorer ▴ 90

Hi, I would like to know what are the tools available- R packages or GUI based, for DNA methylation microarray analysis.

I would like to import and analyze the publicly available dataset GSE57971 which is from NimbleGen Human DNA Methylation 3x720K CpG Island Plus RefSeq Promoter Array platform.

Please help me with this.

PS: I tried CHARM and MEDEP but the documentation isn't great.

Thanks for your time and help.

Microarray • 1.8k views
ADD COMMENT
1
Entering edit mode
8.0 years ago
Shicheng Guo ★ 9.4k

You can do it by yourself one by one with differential methylation test and FDR and further bioinforamtics analysis.

# GSE52271
source("http://bioconductor.org/biocLite.R")
biocLite("GEOquery")
library("GEOquery")
GSE57971 <- getGEO("GSE57971")
data <- as.data.frame(exprs(GSE57971[[1]]))
phen <- pData(phenoData(GSE57971[[1]]))
ADD COMMENT
0
Entering edit mode
8.0 years ago
EpiExplorer ▴ 90

Cant find the package GEOquery.

ADD COMMENT

Login before adding your answer.

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