Mercurial > repos > testtool > get_gr_set
annotate GRsetFromGEO/GRsetFromGEO.R @ 55:e23909ae6676 draft
Uploaded
author | testtool |
---|---|
date | Thu, 10 Aug 2017 06:26:46 -0400 |
parents | 5752f23e451f |
children | d7cf4a35f827 |
rev | line source |
---|---|
5 | 1 options(warn = -1) |
22 | 2 options('download.file.method.GEOquery' = 'wget') |
21 | 3 options('GEOquery.inmemory.gpl'=FALSE) |
17 | 4 |
5 | 5 |
6 args <- commandArgs(trailingOnly = TRUE) | |
16 | 7 input = args[1] |
5 | 8 output = args[2] |
39 | 9 |
55 | 10 GRset <- minfi::getGenomicRatioSetFromGEO(input) |
5 | 11 |
12 save(GRset,file = output) | |
38 | 13 |
54 | 14 |