Get one or more experiments (GSE, SRP, etc) from RefineBio
Source:R/get_refinebio.R
rb_get_experiment.Rd
This is the main function for interacting with RefineBio. It will download, extract, and load the data from RefineBio for the given experiment(s).
Arguments
- experiment
The experiment ID or
rb_experiment
object- base_path
The path to the directory where the dataset will be downloaded and extracted.
- cache_result
If TRUE, cache the result in the base_path.
- overwrite
If TRUE, overwrite the cached result.
Value
A list of SummarizedExperiment
s representing the
experiments in the RefineBio downloaded dataset.
Examples
if (FALSE) {
# Get a single experiment
expt <- rb_get_experiment("GSE1133")
# Get multiple experiments
expts <- rb_get_experiment(c("GSE1133", "GSE11331"))
}