Mercurial > repos > testtool > get_gr_set
annotate GRsetFromGEO/GRsetFromGEO.R @ 22:71a8c9b37d45 draft
Uploaded
author | testtool |
---|---|
date | Mon, 10 Jul 2017 08:58:01 -0400 |
parents | 07f0fc6e4d1d |
children | 296124126b94 |
rev | line source |
---|---|
14 | 1 require("minfi", quietly = TRUE) |
2 | |
5 | 3 options(warn = -1) |
22 | 4 options('download.file.method.GEOquery' = 'wget') |
21 | 5 options('GEOquery.inmemory.gpl'=FALSE) |
17 | 6 |
5 | 7 |
8 args <- commandArgs(trailingOnly = TRUE) | |
16 | 9 input = args[1] |
5 | 10 output = args[2] |
11 | |
16 | 12 GRset <- getGenomicRatioSetFromGEO(input) |
5 | 13 |
14 save(GRset,file = output) |