Mercurial > repos > testtool > get_gr_set
annotate GRsetFromGEO/GRsetFromGEO.R @ 36:bee48babf30d draft
Uploaded
author | testtool |
---|---|
date | Sun, 23 Jul 2017 12:51:15 -0400 |
parents | ae82fab7c544 |
children | 88d2c717105e |
rev | line source |
---|---|
33 | 1 require("IlluminaHumanMethylation450kanno.ilmn12.hg19", quietly = TRUE) |
14 | 2 require("minfi", quietly = TRUE) |
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) |