2 Workflow

3 R functions

Priority functions are designed in a nested way. The core relation follows this route: xPierSNPs -> xPierGenes -> xPier -> xRWR, achieving gene-level prioritisation from an input list of SNPs (along with their significant level). The output of this route is taken as the input of either xPierManhattan for visualising gene priority scores, xPierPathways for prioritising pathways, or xPierSubnet for identifying a network of top prioritised genes.

3.1 xRWR

xRWR: implements Random Walk with Restart (RWR) estimating the affinity score of nodes in a graph to a list of seed nodes. The affinity score can be viewed as the influential impact over the graph that is collectively imposed by seed nodes. If the seeds are not given, it will pre-compute affinity matrix for nodes in the input graph with respect to each starting node (as a seed) by looping over every node in the graph. A higher-level function xPier directly relies on it.

3.2 xPier

xPier: uses RWR to calculate the affinity score of nodes in a graph to a list of seed nodes. A node that has a higher affinity score to seed nodes will receive a higher priority score. It is an internal function acting as a general template for RWR-based prioritisation. A higher-level function xPierGenes directly relies on it.

3.3 xPierGenes

xPierGenes: prioritises gene targets from an input gene interaction network and the score info imposed on its seed nodes/genes. This function can be considered to be a specific instance of xPier, that is, specifying a gene interaction network as a graph and seed nodes as seed genes.

There are two sources of gene interaction network information: the STRING database (Szklarczyk et al. 2015) and the Pathway Commons database (Cerami et al. 2011). STRING is a meta-integration of undirect interactions from a functional aspect, while Pathway Commons mainly contains both undirect and direct interactions from a physical/pathway aspect. In addition to interaction type, users can choose the interactions of varying quality:


Table 1:
Code Interaction (type and quality) Database
STRING_high Functional interactions (with high confidence scores>=700) STRING
STRING_medium Functional interactions (with medium confidence scores>=400) STRING
PCommonsUN_high Physical/undirect interactions (with references & >=2 sources) Pathway Commons
PCommonsUN_medium Physical/undirect interactions (with references & >=1 sources) Pathway Commons
PCommonsDN_high Pathway/direct interactions (with references & >=2 sources) Pathway Commons
PCommonsDN_medium Pathway/direct interactions (with references & >=1 sources) Pathway Commons

3.4 xPierSNPs

xPierSNPs: prioritises gene targets from an input gene interaction network and a given list of SNPs together with the significance level (eg GWAS reported p-values). To do so, it first defines seed genes and their scores that are calculated in an integrative manner to quantify the genetic influence under SNPs. Genetic influential score on a seed gene is calculated from the SNP score (reflecting the SNP significant level), the gene-to-SNP distance weight, the eQTL mapping weight and the promoter capture HiC weight. This function can be considered to be a specific instance of xPierGenes, that is, specifying seed genes plus their scores.

Knowledge of co-inherited variants is also used to include additional SNPs that are in Linkage Disequilibrium (LD) with GWAS lead SNPs. LD SNPs are calculated based on 1000 Genomes Project data (1000 Genomes Project Consortium 2012). LD SNPs are defined to be any SNPs having R2 > 0.8 with GWAS lead SNPs. The user can choose the population used to calculate LD SNPs:


Table 2:
Code Population Project
AFR African 1000 Genomes Project
AMR Admixed American 1000 Genomes Project
EAS East Asian 1000 Genomes Project
EUR European 1000 Genomes Project
SAS South Asian 1000 Genomes Project

3.5 xPierAnno

xPierAnno: prioritises seed genes only from a list of pNode objects using annotation data. To do so, it first extracts seed genes from a list of pNode objects and then scores seed genes using annotation data (or something similar), followed by xPierGenes.

3.6 xPierMatrix and xPierEvidence

xPierMatrix: extracts priority matrix from a list of pNode objects, in which rows are genes and columns for the predictors (corresponding to the pNode objects). Also highlighted is to generate priority results in the discovery mode, that is, (similar to meta-analysis) aggregation of priority matrix.

xPierEvidence: extracts evidence from a list of pNode objects, in terms of seed genes under genetic influence.

xVisEvidence: visualises evidence for prioritised genes in a gene network.

3.7 xPierManhattan and xPierTrack

xPierManhattan: visualises prioritised genes using manhattan plot, in which priority for genes is displayed on the Y-axis along with genomic locations on the X-axis. Also highlighted are genes with the top priority.

xPierTrack: visualises a prioritised gene using track plot, in which priority for the gene in query is displayed on the data track and nearby genes on the annotation track. Genomic locations on the X-axis are indicated on the X-axis, and the gene in query is highlighted.

xPierTrackAdv: visualises a list of prioritised genes using advanced track plot.

3.8 xPierPathways and xPierGSEA

xPierPathways: prioritises pathways based on enrichment analysis of genes with the top priority (eg top 100 genes) using a compendium of pathways. It returns an object of class eTerm. A highly prioritised pathway has its member genes with high gene-level priority scores, that is, having evidence of direct modulation by disease-associated lead (or LD) SNPs, and/or having evidence of indirect modulation at the network level.

xPierGSEA: prioritises pathways based on gene set enrichment analysis (GSEA) of prioritised genes using a compendium of pathways. It returns an object of class eGSEA. A highly prioritised pathway has its member genes with a tendency of having high gene-level priority scores.

In addition to pathways, analysis can be extended to other ontologies, as listed below:


Table 3:
Code Ontology Category
DO Disease Ontology Disease
GOMF Gene Ontology Molecular Function Function
GOBP Gene Ontology Biological Process Function
GOCC Gene Ontology Cellular Component Function
HPPA Human Phenotype Phenotypic Abnormality Phenotype
HPMI Human Phenotype Mode of Inheritance Phenotype
HPCM Human Phenotype Clinical Modifier Phenotype
HPMA Human Phenotype Mortality Aging Phenotype
MP Mammalian/Mouse Phenotype Phenotype
DGIdb DGI druggable gene categories Druggable
SF SCOP domain superfamilies Structural domain
Pfam Pfam domain families Structural domain
PS2 phylostratific age information (our ancestors) Evolution
MsigdbH Hallmark gene sets Hallmark (MsigDB)
MsigdbC1 Chromosome and cytogenetic band positional gene sets Cytogenetics (MsigDB)
MsigdbC2CGP Chemical and genetic perturbation gene sets Perturbation (MsigDB)
MsigdbC2CPall All pathway gene sets Pathways (MsigDB)
MsigdbC2CP Canonical pathway gene sets Pathways (MsigDB)
MsigdbC2KEGG KEGG pathway gene sets Pathways (MsigDB)
MsigdbC2REACTOME Reactome pathway gene sets Pathways (MsigDB)
MsigdbC2BIOCARTA BioCarta pathway gene sets Pathways (MsigDB)
MsigdbC3TFT Transcription factor target gene sets TF targets (MsigDB)
MsigdbC3MIR microRNA target gene sets microRNA targets (MsigDB)
MsigdbC4CGN Cancer gene neighborhood gene sets Cancer (MsigDB)
MsigdbC4CM Cancer module gene sets Cancer (MsigDB)
MsigdbC5BP GO biological process gene sets Function (MsigDB)
MsigdbC5MF GO molecular function gene sets Function (MsigDB)
MsigdbC5CC GO cellular component gene sets Function (MsigDB)
MsigdbC6 Oncogenic signature gene sets Oncology (MsigDB)
MsigdbC7 Immunologic signature gene sets Immunology (MsigDB)

3.9 xPierSubnet

xPierSubnet: identifies a gene network that contains as many highly prioritised genes as possible but a few lowly prioritised genes as linkers. An iterative procedure of choosing different priority cutoff is also used to identify the network with a desired number of nodes/genes.

3.10 Evaluation functions

  • xPredictROCR: assesses the prediction/prioritisation performance via Receiver Operating Characteristic (ROC) and Precision-Recall (PR) analysis.

  • xPredictCompare: compares the prediction/prioritisation performance.

  • xGSsimulator: simulates the gold standard negatives (GSN) from gold standard positives (GSP) considering the gene interaction evidence and returns an object of class sGS.

  • xPierROCR: assesses the dTarget performance via ROC and PR analysis.

  • xMLfeatureplot: visualises/assesses features used for machine learning.

3.11 Integral functions

  • xMLrandomforest: integrates predictor matrix via machine learning algorithm random forest and returns an object of class sTarget.

  • xMLcaret: integrates predictor matrix in a supervised manner via machine learning algorithms using caret and returns an object of class sTarget.

  • xMLparameters: visualises cross-validation performance against tuning parameters.

  • xMLdotplot: visualise machine learning results (a sTarget object) using dot plot and returns an object of class ggplot.

  • xMLdensity: visualise machine learning results (a sTarget or dTarget object) using density plot and returns an object of class ggplot.

  • xMLzoom: visualise machine learning results (a sTarget or dTarget object) using zoom plot and returns an object of class ggplot.

3.12 Elementary functions

  • xPierSNPsAdv: prepares genetic predictors given a list of seed SNPs together with the significance level (e.g. GWAS reported p-values).

  • xPierCross: extracts priority matrix from a list of dTarget/sTarget objects.

  • xSNP2eGenes: defines eQTL genes given a list of SNPs.

  • xSNP2cGenes: defines HiC genes given a list of SNPs.

  • xPCHiCplot: visualises promoter capture HiC data using different network layouts.

  • xContour: visualises a numeric matrix as a contour plot.

  • xGSEAdotplot: visualises GSEA results using dot plot.

  • xGSEAbarplot: visualises GSEA results using bar plot.

  • xGSEAconciser: makes GSEA results conciser by removing redundant terms.

4 Showcases

In this section, we use GWAS SNPs about an inflammatory disease Spondyloarthritis (including Ankylosing Spondylitis and Psoriatic Arthritis) as a case study, and give a step-by-step demo showing how to use Pi to achieve disease-specific genetic prioritisation of targets at the gene, pathway and network level.

First of all, load the packages including Pi:

4.1 Input data

Spondyloarthritis-associated GWAS lead SNPs are collected mainly from GWAS Catalog (Welter et al. 2014), complemented by ImmunoBase and latest publications.

The first 15 rows of data are shown below, with the column SNP for GWAS SNPs and the column Pval for GWAS-detected P-values.


Table 4:
SNP Pval
rs6600247 2.6e-15
rs11209026 2.0e-27
rs11209026 9.1e-14
rs12141575 9.4e-11
rs4129267 3.4e-13
rs1801274 1.4e-09
rs41299637 1.9e-15
rs1250550 1.5e-09
rs1250550 1.5e-09
rs1250550 1.5e-09
rs11190133 4.9e-14
rs1860545 2.8e-10
rs11065898 4.7e-08
rs11624293 1.5e-10
imm_16_28525386 2.6e-09

4.2 Gene-level prioritisation

It includes the following steps:

  • define seed genes, that is, seed genes are defined based on distance-to-SNP window, genetic association with gene expression, and physical interaction involving variants and genes: nearby genes that are located within defined distance window (by default, 50kb) of lead or Linkage Disequilibrium (LD) SNPs that are calculated based on European population data from 1000 Genome Project; expression associated genes (eQTL genes) for which gene expression is, either in a cis- or trans-acting manner, significantly associated with lead or LD SNPs, based on eQTL mapping; promoter capture HiC genes (HiC genes) for which gene promoters physically interact with variants, based on genome-wide capture HiC-generated promoter interactomes.

  • score seed genes, that is, quantifying the genetic influence under lead or LD SNPs.

  • prioritise target genes, that is, estimating their global network connectivity to seed genes. With scored seed genes superposed onto a gene interaction network, RWR algorithm is implemented to prioritise candidate target genes based on their network connectivity/affinity to seed genes. As such, a gene that has a higher affinity score to seed genes will receive a higher priority score.

Specify parameters

Do prioritisation

The results are stored in the data frame pNode$priority, which can be saved into a file Genes_priority.txt:

Visualise in manhattan plot

Top genes can be highlighted in manhattan plot, in which priority scores for genes are displayed on the Y-axis along with genomic locations on the X-axis.

4.3 Pathway-level prioritisation

Pathway-level prioritisation is based on top 100 genes using a compendium of pathways from diverse sources (Canonical, KEGG, BioCarta and Reactome). Since diverse sources are used, it is necessary to remove redundant pathways (of the same granularity to the similar pathways with higher priority scores), done by XGR (Fang et al. 2016).

Barplot of prioritised pathways (non-redundant and informative):

4.4 Network-level prioritisation

Network-level prioritisation is to identify a gene network that contains as many highly prioritised genes as possible but a few lowly prioritised genes as linkers. Given a gene network (the same as used in gene-level prioritisation) with nodes labelled with gene priority scores, the search for a maximum-scoring gene subnetwork is briefed as follows:

  • score transformation, that is, given a threshold of tolerable priority scores, nodes above this threshold (nodes of interest) are scored positively, and negative scores for nodes below the threshold (intolerable).

  • subnetwork identification, that is, to find an interconnected gene subnetwork enriched with positive-score nodes but allowing for a few negative-score nodes as linkers, done via heuristically solving prize-collecting Steiner tree problem (Fang and Gough 2014).

  • controlling the subnetwork size, that is, an iterative procedure of scanning different priority thresholds is used to identify the network with a desired number of nodes/genes.

Notably, the preferential use of the same network as used in gene-level prioritisation is due to the fact that gene-level affinity/priority scores are smoothly distributed over the network after being walked. In other words, the chance of identifying such a gene network enriched with top prioritised genes is much higher. To reduce the runtime, by default only top 10% prioritised genes will be used to search for the maximum-scoring gene network.

The identified gene network has nodes/genes colored according to their priority scores (see below). Notably, if nodes appear abnormally, please remove vertex.shape="sphere" when running the function xVisNet.

5 Session Info

Here is the output of sessionInfo() on the system on which this user manual was compiled:

> R version 3.6.1 (2019-07-05)
> Platform: x86_64-pc-linux-gnu (64-bit)
> Running under: Ubuntu 18.04.3 LTS
> 
> Matrix products: default
> BLAS:   /home/biocbuild/bbs-3.10-bioc/R/lib/libRblas.so
> LAPACK: /home/biocbuild/bbs-3.10-bioc/R/lib/libRlapack.so
> 
> locale:
>  [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C              
>  [3] LC_TIME=en_US.UTF-8        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] grid      stats     graphics  grDevices utils     datasets  methods  
> [8] base     
> 
> other attached packages:
> [1] Pi_1.14.0        XGR_1.1.6        ggplot2_3.2.1    dnet_1.1.5      
> [5] supraHex_1.24.0  hexbin_1.27.3    igraph_1.2.4.1   png_0.1-7       
> [9] BiocStyle_2.14.0
> 
> loaded via a namespace (and not attached):
>   [1] backports_1.1.5             Hmisc_4.2-0                
>   [3] BiocFileCache_1.10.0        RCircos_1.2.1              
>   [5] plyr_1.8.4                  lazyeval_0.2.2             
>   [7] splines_3.6.1               BiocParallel_1.20.0        
>   [9] GenomeInfoDb_1.22.0         ggnetwork_0.5.1            
>  [11] digest_0.6.22               foreach_1.4.7              
>  [13] ensembldb_2.10.0            htmltools_0.4.0            
>  [15] gdata_2.18.0                magrittr_1.5               
>  [17] checkmate_1.9.4             memoise_1.1.0              
>  [19] BSgenome_1.54.0             cluster_2.1.0              
>  [21] ROCR_1.0-7                  sna_2.4                    
>  [23] recipes_0.1.7               Biostrings_2.54.0          
>  [25] gower_0.2.1                 matrixStats_0.55.0         
>  [27] ggbio_1.34.0                askpass_1.1                
>  [29] prettyunits_1.0.2           colorspace_1.4-1           
>  [31] blob_1.2.0                  rappdirs_0.3.1             
>  [33] ggrepel_0.8.1               xfun_0.10                  
>  [35] dplyr_0.8.3                 crayon_1.3.4               
>  [37] RCurl_1.95-4.12             graph_1.64.0               
>  [39] zeallot_0.1.0               survival_2.44-1.1          
>  [41] VariantAnnotation_1.32.0    iterators_1.0.12           
>  [43] ape_5.3                     glue_1.3.1                 
>  [45] gtable_0.3.0                ipred_0.9-9                
>  [47] zlibbioc_1.32.0             XVector_0.26.0             
>  [49] DelayedArray_0.12.0         Rgraphviz_2.30.0           
>  [51] BiocGenerics_0.32.0         scales_1.0.0               
>  [53] GGally_1.4.0                DBI_1.0.0                  
>  [55] Rcpp_1.0.2                  progress_1.2.2             
>  [57] htmlTable_1.13.2            foreign_0.8-72             
>  [59] bit_1.1-14                  OrganismDbi_1.28.0         
>  [61] Formula_1.2-3               lava_1.6.6                 
>  [63] prodlim_2018.04.18          stats4_3.6.1               
>  [65] glmnet_2.0-18               htmlwidgets_1.5.1          
>  [67] httr_1.4.1                  gplots_3.0.1.1             
>  [69] RColorBrewer_1.1-2          acepack_1.4.1              
>  [71] reshape_0.8.8               pkgconfig_2.0.3            
>  [73] XML_3.98-1.20               Gviz_1.30.0                
>  [75] nnet_7.3-12                 dbplyr_1.4.2               
>  [77] caret_6.0-84                reshape2_1.4.3             
>  [79] tidyselect_0.2.5            rlang_0.4.1                
>  [81] AnnotationDbi_1.48.0        munsell_0.5.0              
>  [83] tools_3.6.1                 generics_0.0.2             
>  [85] RSQLite_2.1.2               statnet.common_4.3.0       
>  [87] evaluate_0.14               stringr_1.4.0              
>  [89] yaml_2.2.0                  ModelMetrics_1.2.2         
>  [91] knitr_1.25                  bit64_0.9-7                
>  [93] caTools_1.17.1.2            randomForest_4.6-14        
>  [95] purrr_0.3.3                 AnnotationFilter_1.10.0    
>  [97] RBGL_1.62.0                 nlme_3.1-141               
>  [99] biomaRt_2.42.0              compiler_3.6.1             
> [101] rstudioapi_0.10             curl_4.2                   
> [103] tibble_2.1.3                stringi_1.4.3              
> [105] highr_0.8                   GenomicFeatures_1.38.0     
> [107] plot3D_1.1.1                lattice_0.20-38            
> [109] ProtGenerics_1.18.0         Matrix_1.2-17              
> [111] vctrs_0.2.0                 pillar_1.4.2               
> [113] BiocManager_1.30.9          data.table_1.12.6          
> [115] bitops_1.0-6                rtracklayer_1.46.0         
> [117] GenomicRanges_1.38.0        R6_2.4.0                   
> [119] latticeExtra_0.6-28         bookdown_0.14              
> [121] network_1.15                KernSmooth_2.23-16         
> [123] gridExtra_2.3               IRanges_2.20.0             
> [125] codetools_0.2-16            dichromat_2.0-0            
> [127] MASS_7.3-51.4               gtools_3.8.1               
> [129] assertthat_0.2.1            SummarizedExperiment_1.16.0
> [131] openssl_1.4.1               withr_2.1.2                
> [133] GenomicAlignments_1.22.0    Rsamtools_2.2.0            
> [135] S4Vectors_0.24.0            GenomeInfoDbData_1.2.2     
> [137] parallel_3.6.1              hms_0.5.1                  
> [139] rpart_4.1-15                timeDate_3043.102          
> [141] class_7.3-15                coda_0.19-3                
> [143] misc3d_0.8-4                rmarkdown_1.16             
> [145] biovizBase_1.34.0           lubridate_1.7.4            
> [147] Biobase_2.46.0              base64enc_0.1-3

6 References

Below is the list of references that Pi stands on:

1000 Genomes Project Consortium. 2012. “An integrated map of genetic variation from 1,092 human genomes.” Nature 491 (7422):56–65. https://doi.org/10.1038/nature11632.

Cerami, E. G., B. E. Gross, E. Demir, I. Rodchenkov, O. Babur, N. Anwar, N. Schultz, G. D. Bader, and C. Sander. 2011. “Pathway Commons, a web resource for biological pathway data.” Nucleic Acids Research 39 (Database):D685–D690. https://doi.org/10.1093/nar/gkq1039.

Fang, Hai, and Julian Gough. 2014. “The ’dnet’ approach promotes emerging research on cancer patient survival.” Genome Medicine 6 (8):64. https://doi.org/10.1186/s13073-014-0064-8.

Fang, Hai, Bogdan Knezevic, Katie L. Burnham, and Julian C. Knight. 2016. “XGR software for enhanced interpretation of genomic summary data, illustrated by application to immunological traits.” Genome Medicine 8 (1). Genome Medicine:129. https://doi.org/10.1186/s13073-016-0384-y.

Szklarczyk, Damian, Andrea Franceschini, Stefan Wyder, Kristoffer Forslund, Davide Heller, Jaime Huerta-cepas, Milan Simonovic, et al. 2015. “STRING v10 : protein – protein interaction networks , integrated over the tree of life.” Nucleic Acids Res 43 (Database):D447–D452. https://doi.org/10.1093/nar/gku1003.

Welter, Danielle, Jacqueline MacArthur, Joannella Morales, Tony Burdett, Peggy Hall, Heather Junkins, Alan Klemm, et al. 2014. “The NHGRI GWAS Catalog, a curated resource of SNP-trait associations.” Nucleic Acids Research 42 (D1):1001–6. https://doi.org/10.1093/nar/gkt1229.