Switch to unified view

a b/man/downloadAndProcessDLBCL.Rd
1
% Generated by roxygen2 (4.1.1): do not edit by hand
2
% Please edit documentation in R/downloadAndProcessDLBCL.R
3
\name{downloadAndProcessDLBCL}
4
\alias{downloadAndProcessDLBCL}
5
\title{Download and process all curated DLBCL datasets}
6
\usage{
7
downloadAndProcessDLBCL(...)
8
}
9
\arguments{
10
\item{\dots}{Arguments passed to \code{\link{downloadAndProcessGEO}}.}
11
}
12
\value{
13
Saves a \code{list} of the processed datasets in the working
14
  directory named "dlbcl_data.Rds".
15
  Invisibly returns a \code{list} of the output of
16
  \code{\link{downloadAndProcessGEO}}.
17
}
18
\description{
19
Automatically download and process all support curated DLBCL datasets.
20
Simply loops over all datasets in \code{data(dlbcl_overview)}.
21
}
22
\examples{
23
listTargets("brainarray")
24
\dontrun{
25
# Warning, very long processing times if data is not downloaded.
26
27
# Preprocess with brainarray "Entrez" gene ids
28
res <- downloadAndProcessDLBCL(cdf = "brainarray", target = "ENTREZG",
29
                               clean = FALSE)
30
31
# Preprocess with brainarray "Ensembl" gene ids
32
res2 <- downloadAndProcessDLBCL(cdf = "brainarray", target = "ENSG",
33
                                clean = TRUE)
34
35
# Preprocess with affy's probesets
36
res3 <- downloadAndProcessDLBCL()  #= downloadAndProcessDLBCL(cdf = "affy")
37
}
38
}
39
\author{
40
Anders Ellern Bilgrau\cr
41
  Steffen Falgreen Larsen
42
}
43