Mercurial > repos > testtool > get_gr_set
annotate GRsetFromGEO/GRsetFromGEO.R @ 39:05f6acc80f47 draft
Uploaded
author | testtool |
---|---|
date | Mon, 07 Aug 2017 09:53:59 -0400 |
parents | 88d2c717105e |
children | fe7d4d8591c5 |
rev | line source |
---|---|
39 | 1 require(minfi, quietly = TRUE) |
2 require(IlluminaHumanMethylation450kanno.ilmn12.hg19, 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] |
39 | 12 |
16 | 13 GRset <- getGenomicRatioSetFromGEO(input) |
5 | 14 |
15 save(GRset,file = output) | |
38 | 16 |