view GRsetFromGEO/GRsetFromGEO.R @ 47:b68434e4db0e draft

Uploaded
author testtool
date Tue, 08 Aug 2017 11:52:38 -0400
parents fe7d4d8591c5
children 5752f23e451f
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 <- minfi::getGenomicRatioSetFromGEO(input)

save(GRset,file = output)

??getGenomicRatioSetFromGEO