1 Introduction

The Global Alliance for Genomics and Health (GA4GH) was formed to help accelerate the potential of genomic medicine to advance human health. It brings together over 400 leading institutions working in healthcare, research, disease advocacy, life science, and information technology. The Data Working Group of the GA4GH developed data model schemas and application program interfaces (APIs) for genomic data. These APIs are specifically designed to allow sharing of genomics data in a standardized manner and without having to exchange complete experiments. They developed a reference implementation for these APIs providing a web server for hosting genomic data.

We developed the GA4GHclient package for retrieving and integrating genomic data from GA4GH-based databases. GA4GHshiny is a companion package providing graphical user interface based on web technologies for easly interacting with GA4GH-based databases such as Thousand Genomes and BRCA Exchange. The web interface integrates with Beacon Network providing a list of databases which have the user selected genomic variant (The Global Alliance for Genomics and Health 2016). It was developed using Shiny and related packages.

The package has only one function called app, which runs the web application. It can be done within RStudio however the Beacon Network integration may not work. To solve this problem click in “Open in Browser” button at the top of the window. For example, the code below runs application connected at http://1kgenomes.ga4gh.org/.

library(org.Hs.eg.db)
library(TxDb.Hsapiens.UCSC.hg19.knownGene)
library(GA4GHshiny)
app(host = "http://1kgenomes.ga4gh.org/",
    serverName = "Hosting Thousand Genomes Project",
    orgDb = "org.Hs.eg.db",
    txDb = "TxDb.Hsapiens.UCSC.hg19.knownGene")

The host argument defines which GA4GH-based data server to connect. This is the only required argument. There are some database endpoints available.

The value of serverName argument will show at the top bar of the interface. If not defined it will show the value of host.

The orgDb and the txDb package names are necessary for searching by gene symbol and by genomic feature such as exons and transcripts. The TxDb package version should be the same of the reference genome used by database.

2 Deploying web application

GA4GHshiny application can be executed as web site through Shiny Server. Create an app.R file inside ShinyServer application directory adding the text below. For example /srv/shiny-server/1kgenomes/app.R.

library(org.Hs.eg.db)
library(TxDb.Hsapiens.UCSC.hg19.knownGene)
library(GA4GHshiny)
app(host = "http://1kgenomes.ga4gh.org/",
    serverName = "Hosting Thousand Genomes Project",
    orgDb = "org.Hs.eg.db",
    txDb = "TxDb.Hsapiens.UCSC.hg19.knownGene")

The web application will be available at http://localhost:3838/1kgenomes/.

3 Session Information

## 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] BiocStyle_2.22.0
## 
## loaded via a namespace (and not attached):
##  [1] bookdown_0.24       digest_0.6.28       R6_2.5.1           
##  [4] jsonlite_1.7.2      magrittr_2.0.1      evaluate_0.14      
##  [7] stringi_1.7.5       rlang_0.4.12        jquerylib_0.1.4    
## [10] bslib_0.3.1         rmarkdown_2.11      tools_4.1.1        
## [13] stringr_1.4.0       xfun_0.27           yaml_2.2.1         
## [16] fastmap_1.1.0       compiler_4.1.1      BiocManager_1.30.16
## [19] htmltools_0.5.2     knitr_1.36          sass_0.4.0

References

The Global Alliance for Genomics and Health. 2016. “A Federated Ecosystem for Sharing Genomic, Clinical Data.” Science 352 (6291): 1278–80. https://doi.org/10.1126/science.aaf6162.