Description Usage Arguments Value Note Author(s) Examples
View source: R/downloadAndProcessGEO.R
Functionality for automatically downloading, RMA preprocessing the array
data and formatting the phenotype data, and saving the results in a
.Rds
file.
1 2 | downloadAndProcessGEO(geo_nbr, destdir = getwd(), ..., clean = FALSE,
verbose = TRUE)
|
geo_nbr |
The GEO ascession number. |
destdir |
The destination dir of the downloaded files. |
... |
Arguments passed to |
clean |
Should the strictly unnessesary files be deleted? |
verbose |
Signal the process. |
Creates a folder with the downloaded and processed files.
The processed files are saved as an .Rds
object named
after the used parameters.
Invisibly returns the saved object.
The function will overwrite existing files in the destdir
.
Arguments after ...
must be named.
Anders Ellern Bilgrau, Steffen Falgreen Larsen
1 2 3 4 5 6 7 8 | ## Not run:
print(DLBCL_overview)
geo_nbr <- DLBCL_overview[6,1]
res <- downloadAndProcessGEO(geo_nbr = geo_nbr, cdf = "brainarray",
target = "ENSG", clean = FALSE)
head(exprs(res$es$Batch1))
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.