annotate findDMR/.Rhistory @ 10:7df2b7d79391 draft

Uploaded
author testtool
date Thu, 11 May 2017 11:15:33 -0400
parents bae8d90853b7
children 083895dbc289
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
1 clusterSize=2
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
2 class(clusterSize)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
3 type(clusterSize)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
4 require("minfi", quietly = TRUE)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
5 ??getGenomicRatioSetFromGEO
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
6 getGenomicRatioSetFromGEO
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
7 getwd()
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
8 GEODataTable <- getGEO(GSE51547)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
9 require("BiocGenerics", quietly = TRUE)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
10 require("data.table", quietly = TRUE)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
11 require("GEOquery", quietly = TRUE)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
12 require("rtracklayer", quietly = TRUE)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
13 require("FDb.InfiniumMethylation.hg19", quietly = TRUE)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
14 GEODataTable <- getGEO(GSE51547)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
15 GEODataTable <- getGEO("GSE51547")
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
16 IlmnIDTable <- Table(GEODataTable)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
17 MetaData <- data.frame(Meta(GEODataTable))
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
18 IlmnIDTable <- Table(GEODataTable)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
19 GEODataTable
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
20 GSE<-"GSE51547"
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
21 function (GSE = NULL, path = NULL, array = "IlluminaHumanMethylation450k",
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
22 annotation = .default.450k.annotation, what = c("Beta", "M"),
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
23 mergeManifest = FALSE, i = 1)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
24 {
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
25 what <- match.arg(what)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
26 if (is.null(GSE) && is.null(path))
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
27 stop("Either GSE or path must be supplied.")
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
28 if (!is.null(GSE))
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
29 gset <- GEOquery::getGEO(GSE)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
30 else gset <- GEOquery::getGEO(filename = file.path(path,
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
31 list.files(path, pattern = ".soft")))
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
32 if (length(gset) == 0)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
33 stop("Empty list retrieved from GEO.")
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
34 if (length(gset) > 1) {
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
35 warning("More than one ExpressionSet found:\n", names(gset),
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
36 "\nUsing entry ", i)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
37 gset <- gset[[i]]
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
38 }
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
39 else gset <- gset[[1]]
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
40 platform <- annotation(gset)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
41 if (platform != "GPL13534")
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
42 warning(sprintf("%s is not the platform ID associated with IlluminaHumanMethylation450k. Should be GPL13534.",
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
43 platform))
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
44 if (what == "Beta" & (min(exprs(gset)[, 1], na.rm = TRUE) <
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
45 0 | max(exprs(gset)[, 1], na.rm = TRUE) > 1))
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
46 warning("Values outside [0,1] detected. 'what' argument should not be Beta.")
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
47 ann <- .getAnnotationString(c(array = array, annotation = annotation))
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
48 if (!require(ann, character.only = TRUE))
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
49 stop(sprintf("cannot load annotation package %s", ann))
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
50 object <- get(ann)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
51 gr <- getLocations(object, mergeManifest = mergeManifest,
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
52 orderByLocation = TRUE)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
53 locusNames <- names(gr)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
54 sampleNames(gset) <- gset$title
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
55 common <- intersect(locusNames, fData(gset)$Name)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
56 if (length(common) == 0)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
57 stop("No rowname matches. 'rownames' need to match IlluminaHumanMethylation450k probe names.")
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
58 ind1 <- match(common, fData(gset)$Name)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
59 ind2 <- match(common, locusNames)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
60 preprocessing <- c(rg.norm = paste0("See GEO ", GSE, " for details"))
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
61 if (what == "Beta") {
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
62 out <- GenomicRatioSet(gr = gr[ind2, ], Beta = exprs(gset)[ind1,
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
63 , drop = FALSE], M = NULL, CN = NULL, pData = pData(gset),
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
64 annotation = c(array = array, annotation = annotation),
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
65 preprocessMethod = preprocessing)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
66 }
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
67 else {
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
68 out <- GenomicRatioSet(gr = gr[ind2, ], Beta = NULL,
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
69 M = exprs(gset)[ind1, , drop = FALSE], CN = NULL,
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
70 pData = pData(gset), annotation = c(array = array,
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
71 annotation = annotation), preprocessMethod = preprocessing)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
72 }
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
73 return(out)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
74 }
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
75 <environment: namespace:minfi>
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
76 function (GSE = NULL, path = NULL, array = "IlluminaHumanMethylation450k",
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
77 annotation = .default.450k.annotation, what = c("Beta", "M"),
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
78 mergeManifest = FALSE, i = 1)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
79 {
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
80 what <- match.arg(what)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
81 if (is.null(GSE) && is.null(path))
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
82 stop("Either GSE or path must be supplied.")
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
83 if (!is.null(GSE))
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
84 gset <- GEOquery::getGEO(GSE)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
85 else gset <- GEOquery::getGEO(filename = file.path(path,
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
86 list.files(path, pattern = ".soft")))
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
87 if (length(gset) == 0)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
88 stop("Empty list retrieved from GEO.")
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
89 if (length(gset) > 1) {
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
90 warning("More than one ExpressionSet found:\n", names(gset),
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
91 "\nUsing entry ", i)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
92 gset <- gset[[i]]
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
93 }
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
94 else gset <- gset[[1]]
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
95 platform <- annotation(gset)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
96 if (platform != "GPL13534")
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
97 warning(sprintf("%s is not the platform ID associated with IlluminaHumanMethylation450k. Should be GPL13534.",
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
98 platform))
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
99 if (what == "Beta" & (min(exprs(gset)[, 1], na.rm = TRUE) <
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
100 0 | max(exprs(gset)[, 1], na.rm = TRUE) > 1))
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
101 warning("Values outside [0,1] detected. 'what' argument should not be Beta.")
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
102 ann <- .getAnnotationString(c(array = array, annotation = annotation))
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
103 if (!require(ann, character.only = TRUE))
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
104 stop(sprintf("cannot load annotation package %s", ann))
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
105 object <- get(ann)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
106 gr <- getLocations(object, mergeManifest = mergeManifest,
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
107 orderByLocation = TRUE)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
108 locusNames <- names(gr)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
109 sampleNames(gset) <- gset$title
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
110 common <- intersect(locusNames, fData(gset)$Name)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
111 if (length(common) == 0)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
112 stop("No rowname matches. 'rownames' need to match IlluminaHumanMethylation450k probe names.")
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
113 ind1 <- match(common, fData(gset)$Name)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
114 ind2 <- match(common, locusNames)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
115 preprocessing <- c(rg.norm = paste0("See GEO ", GSE, " for details"))
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
116 if (what == "Beta") {
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
117 out <- GenomicRatioSet(gr = gr[ind2, ], Beta = exprs(gset)[ind1,
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
118 , drop = FALSE], M = NULL, CN = NULL, pData = pData(gset),
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
119 annotation = c(array = array, annotation = annotation),
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
120 preprocessMethod = preprocessing)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
121 }
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
122 else {
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
123 out <- GenomicRatioSet(gr = gr[ind2, ], Beta = NULL,
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
124 M = exprs(gset)[ind1, , drop = FALSE], CN = NULL,
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
125 pData = pData(gset), annotation = c(array = array,
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
126 annotation = annotation), preprocessMethod = preprocessing)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
127 }
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
128 return(out)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
129 }
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
130 GSE<-"GSE51547"
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
131 function (GSE = NULL, path = NULL, array = "IlluminaHumanMethylation450k",
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
132 annotation = .default.450k.annotation, what = c("Beta", "M"),
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
133 mergeManifest = FALSE, i = 1)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
134 {
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
135 what <- match.arg(what)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
136 if (is.null(GSE) && is.null(path))
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
137 stop("Either GSE or path must be supplied.")
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
138 if (!is.null(GSE))
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
139 gset <- GEOquery::getGEO(GSE)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
140 else gset <- GEOquery::getGEO(filename = file.path(path,
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
141 list.files(path, pattern = ".soft")))
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
142 if (length(gset) == 0)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
143 stop("Empty list retrieved from GEO.")
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
144 if (length(gset) > 1) {
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
145 warning("More than one ExpressionSet found:\n", names(gset),
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
146 "\nUsing entry ", i)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
147 gset <- gset[[i]]
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
148 }
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
149 else gset <- gset[[1]]
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
150 platform <- annotation(gset)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
151 if (platform != "GPL13534")
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
152 warning(sprintf("%s is not the platform ID associated with IlluminaHumanMethylation450k. Should be GPL13534.",
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
153 platform))
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
154 if (what == "Beta" & (min(exprs(gset)[, 1], na.rm = TRUE) <
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
155 0 | max(exprs(gset)[, 1], na.rm = TRUE) > 1))
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
156 warning("Values outside [0,1] detected. 'what' argument should not be Beta.")
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
157 ann <- .getAnnotationString(c(array = array, annotation = annotation))
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
158 if (!require(ann, character.only = TRUE))
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
159 stop(sprintf("cannot load annotation package %s", ann))
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
160 object <- get(ann)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
161 gr <- getLocations(object, mergeManifest = mergeManifest,
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
162 orderByLocation = TRUE)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
163 locusNames <- names(gr)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
164 sampleNames(gset) <- gset$title
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
165 common <- intersect(locusNames, fData(gset)$Name)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
166 if (length(common) == 0)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
167 stop("No rowname matches. 'rownames' need to match IlluminaHumanMethylation450k probe names.")
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
168 ind1 <- match(common, fData(gset)$Name)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
169 ind2 <- match(common, locusNames)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
170 preprocessing <- c(rg.norm = paste0("See GEO ", GSE, " for details"))
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
171 if (what == "Beta") {
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
172 out <- GenomicRatioSet(gr = gr[ind2, ], Beta = exprs(gset)[ind1,
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
173 , drop = FALSE], M = NULL, CN = NULL, pData = pData(gset),
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
174 annotation = c(array = array, annotation = annotation),
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
175 preprocessMethod = preprocessing)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
176 }
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
177 else {
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
178 out <- GenomicRatioSet(gr = gr[ind2, ], Beta = NULL,
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
179 M = exprs(gset)[ind1, , drop = FALSE], CN = NULL,
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
180 pData = pData(gset), annotation = c(array = array,
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
181 annotation = annotation), preprocessMethod = preprocessing)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
182 }
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
183 return(out)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
184 }
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
185 out
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
186 GSE<-"GSE51547"
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
187 gset <- getGEO(GSE)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
188 ann <- .getAnnotationString(c(array = array, annotation = annotation))
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
189 platform <- annotation(gset)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
190 hm450.hg19 <- getPlatform()
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
191 IlmnInfo <-
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
192 data.table(
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
193 IlmnID = names(hm450.hg19),
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
194 CHR = as.data.frame(hm450.hg19@seqnames)$value,
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
195 BP = as.numeric(hm450.hg19@elementMetadata$probeStart)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
196 )
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
197 IlmnIDTable <- Table(gset)
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
198 ??getGenomicRatioSetFromGEO()
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
199 getGenomicRatioSetFromGEO()
7df2b7d79391 Uploaded
testtool
parents: 9
diff changeset
200 getGenomicRatioSetFromGEO