view GRsetFromGEO/GRsetFromGEO.R @ 54:5752f23e451f draft

Uploaded
author testtool
date Thu, 10 Aug 2017 06:20:22 -0400
parents fe7d4d8591c5
children e23909ae6676
line wrap: on
line source

require(minfi, 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)