This is a test version of Biostars. For the public version, visit https://www.biostars.org.
How to view TCGA data in idat format file.

I want to analyze the data of tcga on methylation, but I am having difficulty as the downloaded file is in idat format. Could anyone please suggest me how to open the file and by which software.

r

2 answers

You can use minfi R package (https://bioconductor.org/packages/3.3/bioc/manuals/minfi/man/minfi.pdf) to read and normalize idat files.

targets <- read.450k.sheet(baseDir)
sub(baseDir, "", targets$Basename)
RGset <- read.450k.exp(base = baseDir, targets = targets)

Should be easy to search in the internet. RnBeads , you can find the vigenette here

Log in to answer this question.