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