Mercurial > repos > testtool > get_gr_set
annotate GRsetFromGEO/GRsetFromGEO.R @ 61:2382697aad09 draft
Uploaded
author | testtool |
---|---|
date | Thu, 11 Jan 2018 12:48:29 -0500 |
parents | d7cf4a35f827 |
children |
rev | line source |
---|---|
56 | 1 require(minfi, quietly = TRUE) |
61 | 2 require(IlluminaHumanMethylation450kanno.ilmn12.hg19, quietly = TRUE) |
3 | |
4 options('GEOquery.inmemory.gpl'=TRUE) | |
5 options('download.file.method.GEOquery' = 'libcurl') | |
56 | 6 |
5 | 7 options(warn = -1) |
8 | |
9 args <- commandArgs(trailingOnly = TRUE) | |
16 | 10 input = args[1] |
5 | 11 output = args[2] |
39 | 12 |
56 | 13 GRset <- getGenomicRatioSetFromGEO(input) |
5 | 14 |
61 | 15 save(GRset, file = output) |
38 | 16 |