--- title: "getDataset" date: "`r Sys.Date()`" output: html_document vignette: > %\VignetteEngine{knitr::rmarkdown} %\VignetteIndexEntry{Downloading tables with getDataset} --- ```{r knitr, echo = FALSE} library(knitr) opts_chunk$set(echo = TRUE) ``` ```{r netrc_req, echo = FALSE} # This chunk is only useful for BioConductor checks and shouldn't affect any other setup ISR_login <- Sys.getenv("ISR_login") ISR_pwd <- Sys.getenv("ISR_pwd") if(ISR_login != "" & ISR_pwd != ""){ netrc_file <- tempfile("ImmuneSpaceR_tmp_netrc") netrc_string <- paste("machine www.immunespace.org login", ISR_login, "password", ISR_pwd) write(x = netrc_string, file = netrc_file) labkey.netrc.file <- netrc_file } ``` This vignette shows detailed examples for all functionalities of the `getDataset` function. ## Contents 1. [Connections](#cons) 1. [List the datasets](#datasets) 2. [Download a dataset](#download) 3. [Filters](#filters) 4. [Views](#views) 5. [Caching](#caching) 6. [sessionInfo](#sessioninfo) ## Connections As explained into the user guide vignette, datasets must be downloaded from `ImmuneSpaceConnection` objects. We must first instantiate a connection to the study or studies of interest. Throughout this vignette, we will use two connections, one to a single study, and one to to all available data. ```{r CreateConection, cache=FALSE, message=FALSE} library(ImmuneSpaceR) sdy269 <- CreateConnection("SDY269") all <- CreateConnection("") ``` ## List the datasets Now that the connections have been instantiated, we can start downloading from them. But we need to figure out which datasets are available within our chosen studies. Printing the connections will, among other information, list the datasets availables. The `listDatasets` method will display only the information we are looking for. ```{r listDatasets} sdy269$listDatasets() all$listDatasets() ``` Naturally, `all` contains every dataset available on ImmuneSpace as it combines all available studies. Additionaly, when creating connection object with `verbose = TRUE`, a call to the `getDataset` function with an invalid dataset name will return the list of valid datasets. [Back to top](#contents) ## Download Calling `getDataset` returns a selected dataset as it is displayed on ImmuneSpace. ```{r getDataset} hai_269 <- sdy269$getDataset("hai") hai_all <- all$getDataset("hai") print(head(hai_269)) ``` Because some datasets such as flow cytometry results can contain a large number of rows, the function returns `data.table` objects to improve performance. This is especially important with multi-study connections. [Back to top](#contents) ## Filters The datasets can be filtered before download. Filters should be created using `Rlabkey`'s `makeFilter` function. Each filter is composed of three part: - A column name or column label - An operator - A value or array of values separated by a semi-colon ```{r makeFilters, cache = FALSE} library(Rlabkey) # Get participants under age of 30 young_filter <- makeFilter(c("age_reported", "LESS_THAN", 30)) # Get a specific list of two participants pid_filter <- makeFilter(c("participantid", "IN", "SUB112841.269;SUB112834.269")) ``` For a list of available operators, see `?makeFilter`. ```{r filters} # HAI data for participants of study SDY269 under age of 30 hai_young <- sdy269$getDataset("hai", colFilter = young_filter) # List of participants under age 30 demo_young <- all$getDataset("demographics", colFilter = young_filter) # ELISPOT assay results for two participants mbaa_pid2 <- all$getDataset("elispot", colFilter = pid_filter) ``` Note that filtering is done before download. When performance is a concern, it is faster to do the filtering via the `colfFilter` argument than on the returned table. ## Views Any dataset grid on ImmuneSpace offers the possibility to switch views between 'Default' and 'Full'. The Default view contains information that is directly relevant to the user. Sample description and results are joined with basic demographic. However, this is not the way data is organized in the database. The 'Full' view is a representation of the data as it is stored on [ImmPort](http://www.immport.org/immport-open/public/home/home). The accession columns are used under the hood for join operations. They will be useful to developers and user writing reports to be displayed in ImmuneSpace studies. ![](./img/getDataset-views.png) Screen capture of the button bar of a dataset grid on ImmuneSpace The `original_view` argument decides which view is downloaded. If set to `TRUE`, the 'Full' view is returned. ```{r views} full_hai <- sdy269$getDataset("hai", original_view = TRUE) print(colnames(full_hai)) ``` For additional information, refer to the 'Working with tabular data' video tutorial available in the menu bar on any page of the portal. [Back to top](#contents) ## Caching As explained in the user guide, the `ImmuneSpaceConnection` class is a Reference class. It means its objects have fields accessed by reference. As a consequence, they can be modified without making a copy of the entire object. ImmuneSpaceR uses this feature to store downloaded datasets and expression matrices. Subsequent calls to `getDataset` with the same input will be faster. See `?setRefClass` for more information about reference classes. We can see the data currently cached using the `data_cache` field. This is not intended to be used for data manipulation and only displayed here to explain what gets cached. ```{r caching-dataset} pcr <- sdy269$getDataset("pcr") names(sdy269$data_cache) ``` Different [views](#views) are saved separately. ```{r caching-views} pcr_ori <- sdy269$getDataset("pcr", original_view = TRUE) names(sdy269$data_cache) ``` Because of the infinite number of filters and combinations of filters, we do not cache filtered datasets. If, for any reason, a specific dataset needs to be redownloaded, the `reload` argument will clear the cache for that specific `getDataset` call and download the table again. ```{r caching-reload} hai_269 <- sdy269$getDataset("hai", reload = TRUE) ``` Finally, it is possible to clear every cached dataset (and expression matrix). ```{r caching-clear} sdy269$clear_cache() names(sdy269$data_cache) ``` Again, the `data.cache` field should never be modified manually. When in doubt, simply reload the dataset. [Back to top](#contents) ## sessionInfo() ```{r sessionInfo} sessionInfo() ```