view GRsetFromGEO/GRsetFromGEO.R @ 32:296124126b94 draft

Uploaded
author testtool
date Sun, 23 Jul 2017 12:00:07 -0400
parents 71a8c9b37d45
children ae82fab7c544
line wrap: on
line source

require("minfi", quietly = TRUE)
require("IlluminaHumanMethylation450kanno.ilmn12.hg19", quietly = TRUE)

options(warn = -1)
options('download.file.method.GEOquery' = 'wget')
options('GEOquery.inmemory.gpl'=FALSE)


args <- commandArgs(trailingOnly = TRUE)
input = args[1] 
output = args[2] 

GRset <- getGenomicRatioSetFromGEO(input)

save(GRset,file = output)