annotate GRsetFromGEO/GRsetFromGEO.R @ 38:88d2c717105e draft

Uploaded
author testtool
date Mon, 24 Jul 2017 10:39:43 -0400
parents ae82fab7c544
children 05f6acc80f47
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5
7511130b5068 Uploaded
testtool
parents:
diff changeset
1 options(warn = -1)
22
71a8c9b37d45 Uploaded
testtool
parents: 21
diff changeset
2 options('download.file.method.GEOquery' = 'wget')
21
07f0fc6e4d1d Uploaded
testtool
parents: 17
diff changeset
3 options('GEOquery.inmemory.gpl'=FALSE)
17
3431c6054674 Uploaded
testtool
parents: 16
diff changeset
4
5
7511130b5068 Uploaded
testtool
parents:
diff changeset
5
7511130b5068 Uploaded
testtool
parents:
diff changeset
6 args <- commandArgs(trailingOnly = TRUE)
16
ceaf71c74547 Uploaded
testtool
parents: 14
diff changeset
7 input = args[1]
5
7511130b5068 Uploaded
testtool
parents:
diff changeset
8 output = args[2]
38
88d2c717105e Uploaded
testtool
parents: 33
diff changeset
9 input <- 'GSE51547'
16
ceaf71c74547 Uploaded
testtool
parents: 14
diff changeset
10 GRset <- getGenomicRatioSetFromGEO(input)
5
7511130b5068 Uploaded
testtool
parents:
diff changeset
11
7511130b5068 Uploaded
testtool
parents:
diff changeset
12 save(GRset,file = output)
38
88d2c717105e Uploaded
testtool
parents: 33
diff changeset
13