prioGene

Erqiang Hu

Revised: 17 July, 2019


Introduction

Prioritizing candidate genes for complex non-communicable diseases is critical to understanding their mechanisms and developing better diagnostics and treatments.

With the emergence of a great amount of biological data, more and more studies have been carried out on the identification and sequencing of disease-related genes by using the calculation method of protein-protein interaction (PPI) network. In gene sequencing methods, the topological features of PPI networks are often used, such as ToppNet (https://toppGene.cchmc.org) and Razaghi Moghadam’s gene sequencing method.

In this study, a candidate gene prioritization method was proposed for non-communicable diseases considering disease risks transferred between genes in weighted disease PPI networks with weights for nodes and edges based on functional information.

Construction of weighted networks

In biological networks, nodes represented genes and edges represented interactions between products of these genes. Weights for nodes (genes) and edges (interactions) were calculated utilizing functional information represented by GO terms, respectively. For each gene g, the gene weight w g was defined as the proportion of GO terms annotated by g in all GO terms annotated by human genes. The interaction weight Wgh was defined as the functional similarity of two interacting genes g and h.

Prioritization of candidate genes

The prioritization of candidate genes was performed based on disease risk scores of each gene obtained from an iteration process considering disease risks transferred between genes.


Installation

Get the development version from github:

if(!requireNamespace("devtools", quietly = TRUE))
    install.packages("devtools")
devtools::install_github("huerqiang/prioGene")

Or the released version from CRAN:

install.packages("prioGene")

Common operations on prioGene

library(prioGene)
#> 

2. Calculation of network weights

These five functions form a pipeline to weight the nodes and edges of the network based on functional information. GO function annotation information comes from org.Hs.eg.db.

3. Prioritization of candidate genes

The prioritization of candidate genes was performed based on disease risk scores of each gene obtained from an iteration process considering disease risks transferred between genes.

Session information

sessionInfo()
#> R version 3.6.2 (2019-12-12)
#> Platform: x86_64-w64-mingw32/x64 (64-bit)
#> Running under: Windows 10 x64 (build 18363)
#> 
#> Matrix products: default
#> 
#> locale:
#> [1] LC_COLLATE=C                              
#> [2] LC_CTYPE=Chinese (Simplified)_China.936   
#> [3] LC_MONETARY=Chinese (Simplified)_China.936
#> [4] LC_NUMERIC=C                              
#> [5] LC_TIME=Chinese (Simplified)_China.936    
#> 
#> attached base packages:
#> [1] stats     graphics  grDevices utils     datasets  methods   base     
#> 
#> other attached packages:
#> [1] prioGene_1.0.1
#> 
#> loaded via a namespace (and not attached):
#>  [1] Rcpp_1.0.3           AnnotationDbi_1.48.0 knitr_1.27.2        
#>  [4] magrittr_1.5         IRanges_2.20.2       BiocGenerics_0.32.0 
#>  [7] bit_1.1-15.1         rlang_0.4.2          org.Hs.eg.db_3.10.0 
#> [10] stringr_1.4.0        blob_1.2.0           tools_3.6.2         
#> [13] parallel_3.6.2       Biobase_2.46.0       xfun_0.12           
#> [16] DBI_1.1.0            htmltools_0.4.0      yaml_2.2.0          
#> [19] bit64_0.9-7          digest_0.6.23        tibble_2.1.3        
#> [22] crayon_1.3.4         S4Vectors_0.24.2     vctrs_0.2.1         
#> [25] zeallot_0.1.0        memoise_1.1.0        evaluate_0.14       
#> [28] RSQLite_2.2.0        rmarkdown_2.1        stringi_1.4.5       
#> [31] compiler_3.6.2       pillar_1.4.3         backports_1.1.5     
#> [34] stats4_3.6.2         pkgconfig_2.0.3