Mercurial > repos > testtool > get_gr_set
annotate GRsetFromGEO/GRsetFromGEO.R @ 38:88d2c717105e draft
Uploaded
author | testtool |
---|---|
date | Mon, 24 Jul 2017 10:39:43 -0400 |
parents | ae82fab7c544 |
children | 05f6acc80f47 |
rev | line source |
---|---|
5 | 1 options(warn = -1) |
22 | 2 options('download.file.method.GEOquery' = 'wget') |
21 | 3 options('GEOquery.inmemory.gpl'=FALSE) |
17 | 4 |
5 | 5 |
6 args <- commandArgs(trailingOnly = TRUE) | |
16 | 7 input = args[1] |
5 | 8 output = args[2] |
38 | 9 input <- 'GSE51547' |
16 | 10 GRset <- getGenomicRatioSetFromGEO(input) |
5 | 11 |
12 save(GRset,file = output) | |
38 | 13 |