Mercurial > repos > testtool > get_gr_set
annotate GRsetFromGEO/GRsetFromGEO.R @ 45:ddf8f48d1a37 draft
Uploaded
author | testtool |
---|---|
date | Tue, 08 Aug 2017 09:16:28 -0400 |
parents | fe7d4d8591c5 |
children | 5752f23e451f |
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 |
42 | 13 GRset <- minfi::getGenomicRatioSetFromGEO(input) |
5 | 14 |
15 save(GRset,file = output) | |
38 | 16 |
42 | 17 ??getGenomicRatioSetFromGEO |