Mercurial > repos > testtool > get_gr_set
annotate GRsetFromGEO/GRsetFromGEO.R @ 19:0a619d0e45fd draft
Deleted selected files
author | testtool |
---|---|
date | Mon, 03 Jul 2017 07:13:43 -0400 |
parents | 3431c6054674 |
children | 07f0fc6e4d1d |
rev | line source |
---|---|
14 | 1 require("minfi", quietly = TRUE) |
2 | |
5 | 3 options(warn = -1) |
17 | 4 options('download.file.method.GEOquery'='auto') |
5 options('GEOquery.inmemory.gpl'=TRUE) | |
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) |