annotate GRsetFromGEO/GRsetFromGEO.R @ 63:ddd126dbb19a draft default tip

Uploaded
author testtool
date Thu, 11 Jan 2018 12:58:58 -0500
parents 2382697aad09
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
56
d7cf4a35f827 Uploaded
testtool
parents: 55
diff changeset
1 require(minfi, quietly = TRUE)
61
2382697aad09 Uploaded
testtool
parents: 56
diff changeset
2 require(IlluminaHumanMethylation450kanno.ilmn12.hg19, quietly = TRUE)
2382697aad09 Uploaded
testtool
parents: 56
diff changeset
3
2382697aad09 Uploaded
testtool
parents: 56
diff changeset
4 options('GEOquery.inmemory.gpl'=TRUE)
2382697aad09 Uploaded
testtool
parents: 56
diff changeset
5 options('download.file.method.GEOquery' = 'libcurl')
56
d7cf4a35f827 Uploaded
testtool
parents: 55
diff changeset
6
5
7511130b5068 Uploaded
testtool
parents:
diff changeset
7 options(warn = -1)
7511130b5068 Uploaded
testtool
parents:
diff changeset
8
7511130b5068 Uploaded
testtool
parents:
diff changeset
9 args <- commandArgs(trailingOnly = TRUE)
16
ceaf71c74547 Uploaded
testtool
parents: 14
diff changeset
10 input = args[1]
5
7511130b5068 Uploaded
testtool
parents:
diff changeset
11 output = args[2]
39
05f6acc80f47 Uploaded
testtool
parents: 38
diff changeset
12
56
d7cf4a35f827 Uploaded
testtool
parents: 55
diff changeset
13 GRset <- getGenomicRatioSetFromGEO(input)
5
7511130b5068 Uploaded
testtool
parents:
diff changeset
14
61
2382697aad09 Uploaded
testtool
parents: 56
diff changeset
15 save(GRset, file = output)
38
88d2c717105e Uploaded
testtool
parents: 33
diff changeset
16