Mercurial > repos > testtool > get_gr_set
changeset 52:d6c7c3ed3290 draft
Uploaded
author | testtool |
---|---|
date | Thu, 10 Aug 2017 06:19:36 -0400 |
parents | 55c57fa3f679 |
children | 5547aeb4ff23 |
files | GRsetFromGEO/test-data/GRsetFromGEO.R |
diffstat | 1 files changed, 16 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/GRsetFromGEO/test-data/GRsetFromGEO.R Thu Aug 10 06:19:36 2017 -0400 @@ -0,0 +1,16 @@ +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) + +