Contents

library(healthyControlsPresenceChecker)
#> Setting options('download.file.method.GEOquery'='auto')
#> Setting options('GEOquery.inmemory.gpl'=FALSE)

0.1 Introduction

Bioinformatics projects regarding the analysis of data of patients with cancer or other diseases often require the comparison between the results obtained on patients’ data and results obtained on healthy controls’ data. This step, although crucial, often cannot be performed if the dataset contains no healthy control data. Looking for datasets containing both these kinds of the data can be tedious, and checking a specific dataset can be time-consuming, too. Here we propose a software package that can immedaitely inform the user if data of healthy controls are present or not in a specific dataset.

0.2 Description

healthyControlsPresenceChecker allows users to verify if a specific GEO dataset contains data of healthy controls amongside data of patients.

0.3 Installation via Bioconductor

Once this package will be available on Bioconductor, it will be possibile to install it through the following commands.

Start R (version “4.1”) and enter:

if (!requireNamespace("BiocManager", quietly = TRUE))`
        `install.packages("BiocManager")

BiocManager::install("healthyControlsPresenceChecker")

It will be possible to load the package with the following command:

library("healthyControlsPresenceChecker")

0.4 Usage

The usage of healthyControlsPresenceChecker is very easy. The main function healthyControlsCheck() reads two input arguments: the GEO accession code of the dataset for which the user wants to verify the presence of the healthy controls, and a verbose flag. For example, if the user wants to know if the GSE47407 dataset contains data of healthy controls, she/he can type on a terminal shell within the R environment:

outcomeGSE47407 <- healthyControlsCheck("GSE47407", TRUE)
#> Processed URL: https://ftp.ncbi.nlm.nih.gov/geo/series/GSE47nnn/GSE47407
#> Found 1 file(s)
#> GSE47407_series_matrix.txt.gz
#> === === === === === GSE47407 === === === === ===
#> :: The keyword "healthy" was NOT found among the annotations of this dataset (GSE47407)
#> :: The keyword "control" was NOT found among the annotations of this dataset (GSE47407)
#> === === === === === === === === === === === ===
#> 
#> healthyControlsCheck() call output: were healthy controls found in the GSE47407 dataset? FALSE

The function will print all the intermediate messages, and eventually the outcomeGSE47407 variable will be true if healthy controls were found, or false otherwise.

0.5 Contacts

This software was developed by Davide Chicco, who can be contacted via email at davidechicco(AT)davidechicco.it

Session Info

sessionInfo()
#> R version 4.2.0 RC (2022-04-19 r82224)
#> Platform: x86_64-pc-linux-gnu (64-bit)
#> Running under: Ubuntu 20.04.4 LTS
#> 
#> Matrix products: default
#> BLAS:   /home/biocbuild/bbs-3.15-bioc/R/lib/libRblas.so
#> LAPACK: /home/biocbuild/bbs-3.15-bioc/R/lib/libRlapack.so
#> 
#> locale:
#>  [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C              
#>  [3] LC_TIME=en_GB              LC_COLLATE=C              
#>  [5] LC_MONETARY=en_US.UTF-8    LC_MESSAGES=en_US.UTF-8   
#>  [7] LC_PAPER=en_US.UTF-8       LC_NAME=C                 
#>  [9] LC_ADDRESS=C               LC_TELEPHONE=C            
#> [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C       
#> 
#> attached base packages:
#> [1] stats     graphics  grDevices utils     datasets  methods   base     
#> 
#> other attached packages:
#> [1] healthyControlsPresenceChecker_1.0.0 BiocStyle_2.24.0                    
#> 
#> loaded via a namespace (and not attached):
#>  [1] formatR_1.12              bslib_0.3.1              
#>  [3] compiler_4.2.0            pillar_1.7.0             
#>  [5] BiocManager_1.30.17       jquerylib_0.1.4          
#>  [7] R.methodsS3_1.8.1         R.utils_2.11.0           
#>  [9] tools_4.2.0               digest_0.6.29            
#> [11] jsonlite_1.8.0            evaluate_0.15            
#> [13] lifecycle_1.0.1           tibble_3.1.6             
#> [15] pkgconfig_2.0.3           rlang_1.0.2              
#> [17] DBI_1.1.2                 cli_3.3.0                
#> [19] GEOquery_2.64.0           curl_4.3.2               
#> [21] yaml_2.3.5                xfun_0.30                
#> [23] fastmap_1.1.0             xml2_1.3.3               
#> [25] dplyr_1.0.8               stringr_1.4.0            
#> [27] knitr_1.39                hms_1.1.1                
#> [29] generics_0.1.2            vctrs_0.4.1              
#> [31] sass_0.4.1                tidyselect_1.1.2         
#> [33] Biobase_2.56.0            glue_1.6.2               
#> [35] data.table_1.14.2         R6_2.5.1                 
#> [37] fansi_1.0.3               rmarkdown_2.14           
#> [39] bookdown_0.26             limma_3.52.0             
#> [41] tidyr_1.2.0               tzdb_0.3.0               
#> [43] readr_2.1.2               purrr_0.3.4              
#> [45] magrittr_2.0.3            BiocGenerics_0.42.0      
#> [47] htmltools_0.5.2           ellipsis_0.3.2           
#> [49] assertthat_0.2.1          utf8_1.2.2               
#> [51] stringi_1.7.6             crayon_1.5.1             
#> [53] R.oo_1.24.0               geneExpressionFromGEO_0.9