ADAMgui is an Graphical User Interface for the ADAM package which is GSEA R package created to group a set of genes from comparative samples (control versus experiment) belonging to different species according to their respective functions (Gene Ontology and KEGG pathways as default) and show their significance by calculating p-values referring to gene diversity and activity (@Castro2009). Each group of genes is called GFAG (Group of Functionally Associated Genes).
The ADAM package was constituted by an statistical class, all genes present in the expression data are grouped by their respective functions according to the domains described by AnalysisDomain argument. The relationship between genes and functions are made based on the species annotation package. If there is no annotation package, a three column file (gene, function and function description) must be provided. For each GFAG, gene diversity and activity in each sample are calculated. As the package always compare two samples (control versus experiment), relative gene diversity and activity for each GFAG are calculated. Using bootstrap method, for each GFAG, according to relative gene diversity and activity, two p-values are calculated. The p-values are then corrected, according to the correction method defined by PCorrectionMethod argument, generating a q-value (@molan2018). The significative GFAGs will be those whoose q-value stay under the cutoff set by PCorrection argument. Optionally, it's possible to run Wilcoxon test and/or Fisher's exact test (@fontoura2016). These tests also provide a corrected p-value, and siginificative groups can be seen through them.
The ADAMgui package provides a graphical class so the outputs of the statistical functions in the ADAM package can be studied through different plots. It's possible, for example, to choose a specific GFAG and observe the gene expression behavior within it. Features as differential expression and fold change can be easily seen.
Download and installation of the package can be done with Bioconductor plataform via BiocManager package, as the code chunk shows:
if (!requireNamespace("BiocManager", quietly = TRUE)){
install.packages("BiocManager")
BiocManager::install("ADAMgui")}
Download and installation of the development version of the package can be done from the package's GitHub repositories as follows:
BiocManager::install('jrybarczyk/ADAMgui')
After download and installation of the desired version of the ADAMgui package, it can be loaded:
library(ADAMgui)
The ADAMgui package contains 2 graphical modules for visualization and analysis of the GFAGAnalysis output file. These modules are shiny-generated (GUI)s that allows the user to create and download plots in .eps format. The functions that launches those applications are: GFAGpathUi() and GFAGtargetUi(). The sections below contains more information about both applications.
'Paths' are essentially group names that contains the targets (eg: Gene Ontologies and KEGG are paths while genes and proteins related to them are targets). The GFAGAnalysis output file contains information about the paths that the user utilized in the analysis and the GFAGpathUi() is a function that launches a shiny based (GUI) that can construct heatmaps for q-values present in the GFAGAnalysis output file. Below there is the layout of an usage example of the application with the GFAGAnalysis output file created with the first 10 entries of the Aedes Aegypt data used in the statistical modules.
To generate the input file 'ResultAnalysisAedes.txt' use the commands on R console listed below. First load the data in the package:
library(ADAMgui)
data("ResultAnalysisAedes")
Then select the first 10 rows:
library(ADAMgui)
data("ResultAnalysisAedes")
dt<-ResultAnalysisAedes[1:10,]
And save it:
write.table(dt,'ResultAnalysisAedes.txt',sep='\t',quote = F,
row.names = F,col.names = T)
Now launch the app, it can be launched in local machine or your default browser:
library(ADAMgui)
GFAGpathUi(TRUE) #Run the app in your default browser.
GFAGpathUi(FALSE) #Run the app in R (your local machine).
This application was made to further analyse the GFAGs in the GFAGAnalysis output file. These paths can have many targets (genes, proteins) and this application constructs a plot that show the differential expression of the targets in a selected Path. The user needs to input 4 files in order to use this application: the GFAGAnalysis output file, an expression file, a Path-to-Target relationship file and a differential expression file.
Below there is the layout of an usage example of the application with the GFAGAnalysis output file of the Aedes Aegypt data used in the statistical modules. Load the required data first in order to generate the input data:
library(ADAM)
library(ADAMgui)
data("ResultAnalysisAedes") # GFAG Output data
data("ExpressionAedes") # target expression data
data("GeneFunctionAedes") # Path-to-Target relationship data
data("DiffAedes") # target differential expression
Now create the files:
# save the GFAG output file
write.table(dt,'ResultAnalysisAedes.txt',sep='\t',quote = F,
row.names = F,col.names = T)
# save the target expression file
write.table(dt,'ExpressionAedes.txt',sep='\t',quote = F,
row.names = F,col.names = T)
# save the Path-to-Target relationship file
write.table(dt,'GeneFunctionAedes.txt',sep='\t',quote = F,
row.names = F,col.names = T)
# save the target differential expression file
write.table(dt,'DiffAedes.txt',sep='\t',quote = F,
row.names = F,col.names = T)
The app can be launched in local machine or your default browser:
library(ADAM)
library(ADAMgui)
GFAGtargetUi(TRUE) #Run the app in your default browser.
GFAGtargetUi(FALSE) #Run the app in R (your local machine).
## R version 4.1.1 (2021-08-10)
## Platform: x86_64-pc-linux-gnu (64-bit)
## Running under: Ubuntu 20.04.3 LTS
##
## Matrix products: default
## BLAS: /home/biocbuild/bbs-3.14-bioc/R/lib/libRblas.so
## LAPACK: /home/biocbuild/bbs-3.14-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] ADAMgui_1.10.0 ADAM_1.10.0
##
## loaded via a namespace (and not attached):
## [1] bitops_1.0-7 matrixStats_0.61.0
## [3] bit64_4.0.5 RColorBrewer_1.1-2
## [5] httr_1.4.2 GenomeInfoDb_1.30.0
## [7] backports_1.2.1 tools_4.1.1
## [9] utf8_1.2.2 R6_2.5.1
## [11] DT_0.19 DBI_1.1.1
## [13] BiocGenerics_0.40.0 colorspace_2.0-2
## [15] tidyselect_1.1.1 gridExtra_2.3
## [17] curl_4.3.2 bit_4.0.4
## [19] compiler_4.1.1 Biobase_2.54.0
## [21] shinyjs_2.0.0 DelayedArray_0.20.0
## [23] scales_1.1.1 pbapply_1.5-0
## [25] stringr_1.4.0 digest_0.6.28
## [27] foreign_0.8-81 rmarkdown_2.11
## [29] colorRamps_2.3 rio_0.5.27
## [31] XVector_0.34.0 pkgconfig_2.0.3
## [33] htmltools_0.5.2 MatrixGenerics_1.6.0
## [35] fastmap_1.1.0 readxl_1.3.1
## [37] htmlwidgets_1.5.4 rlang_0.4.12
## [39] RSQLite_2.2.8 shiny_1.7.1
## [41] generics_0.1.1 zip_2.2.0
## [43] car_3.0-11 dplyr_1.0.7
## [45] RCurl_1.98-1.5 magrittr_2.0.1
## [47] GO.db_3.14.0 GenomeInfoDbData_1.2.7
## [49] Matrix_1.3-4 Rcpp_1.0.7
## [51] munsell_0.5.0 S4Vectors_0.32.0
## [53] fansi_0.5.0 abind_1.4-5
## [55] lifecycle_1.0.1 stringi_1.7.5
## [57] yaml_2.2.1 carData_3.0-4
## [59] SummarizedExperiment_1.24.0 zlibbioc_1.40.0
## [61] plyr_1.8.6 grid_4.1.1
## [63] blob_1.2.2 parallel_4.1.1
## [65] promises_1.2.0.1 ggrepel_0.9.1
## [67] forcats_0.5.1 crayon_1.4.1
## [69] lattice_0.20-45 haven_2.4.3
## [71] Biostrings_2.62.0 hms_1.1.1
## [73] KEGGREST_1.34.0 knitr_1.36
## [75] pillar_1.6.4 varhandle_2.0.5
## [77] ggpubr_0.4.0 GenomicRanges_1.46.0
## [79] ggsignif_0.6.3 reshape2_1.4.4
## [81] stats4_4.1.1 glue_1.4.2
## [83] evaluate_0.14 data.table_1.14.2
## [85] BiocManager_1.30.16 png_0.1-7
## [87] vctrs_0.3.8 httpuv_1.6.3
## [89] cellranger_1.1.0 testthat_3.1.0
## [91] tidyr_1.1.4 gtable_0.3.0
## [93] purrr_0.3.4 assertthat_0.2.1
## [95] cachem_1.0.6 ggplot2_3.3.5
## [97] openxlsx_4.2.4 xfun_0.27
## [99] mime_0.12 broom_0.7.9
## [101] xtable_1.8-4 rstatix_0.7.0
## [103] later_1.3.0 tibble_3.1.5
## [105] AnnotationDbi_1.56.0 memoise_2.0.0
## [107] IRanges_2.28.0 ellipsis_0.3.2
## [109] BiocStyle_2.22.0