Mercurial > repos > testtool > geo_data
annotate getGRsetFromGEO/getGRsetFromGEO.R @ 11:983651783ce9 draft
Uploaded
author | testtool |
---|---|
date | Wed, 22 Mar 2017 09:01:06 -0400 |
parents | |
children |
rev | line source |
---|---|
11 | 1 require("minfi", quietly = TRUE) |
2 | |
3 options(warn = -1) | |
4 options("download.file.method"="wget") | |
5 | |
6 args <- commandArgs(trailingOnly = TRUE) | |
7 | |
8 GSE = args[1] #GSE51547 | |
9 output = args[2] #output <- ("GEOdata.txt") | |
10 | |
11 GEO <- getGenomicRatioSetFromGEO(GSE) | |
12 | |
13 save(GEO, ascii=TRUE, file=output) | |
14 |