Mercurial > repos > testtool > get_gr_set
annotate GRsetFromGEO/GRsetFromGEO.R @ 29:5d796e9a96ae draft
Uploaded
author | testtool |
---|---|
date | Mon, 10 Jul 2017 09:09:09 -0400 |
parents | 71a8c9b37d45 |
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) |