Skip to contents

Introduction

Directly quoting the the paper published by PANTHER (Protein Analysis THrough Evolutionary Relationships) authors:

The PANTHER classification system (https://www.pantherdb.org) a comprehensive system that combines genomes, gene function , pathways and statistical analysis tools to enable to analyze large-scale genome-wide experimental data. The system (PANTHER v.14.0) covers 131 complete genomes organized gene families and subfamilies; evolutionary relationships between are represented in phylogenetic trees, multiple sequence and statistical models (hidden Markov models (HMMs)). The families and subfamilies are annotated with Gene Ontology (GO) terms, sequences are assigned to PANTHER pathways. A suite of tools has built to allow users to browse and query gene functions and analyze-scale experimental data with a number of statistical tests. is widely used by bench scientists, bioinformaticians, computer and systems biologists.

(source: Mi, Huaiyu, et al. “Protocol Update for large-scale genome and gene function analysis with the PANTHER classification system (v. 14.0).” Nature protocols 14.3 (2019): 703-721)

The available tools in PANTHER’s RESTful API services can be divided into 3 broad categories: Mapping genes, retrieving information, and research tools. Herein, we provide a very short introduction; you can always check functions’ manuals for detailed guides and examples.


Map genes


Get information

  • rba_panther_info(): Retrieve a list of PANTHER’s supported organisms, datasets, families, or pathways

  • rba_panther_family(): Retrieve Orthologs, MSA, or Tree topology of a given PANTHER family.


Gene List Analysis

rba_panther_enrich() is equivalent to Gene List analysis tool’s webpage. Depending on the provided input’s class, PANTHER will perform either over-representation analysis or statistical enrichment analysis. Below we demonstrate how to perform such analyses.

Get the available annotation datasets

First, we need to select an annotation dataset to conduct the analysis based on it. Each annotation dataset contains a collection of terms, where each term is associated with a group of genes.

To retrieve the list of available annotation datasets in PANTHER, use the following command:

annots <- rba_panther_info(what = "datasets")

Please note that you should use the ID of the desired annotation dataset, not its label. For example, using "biological_process" is incorrect; you should rather use "GO:0008150".

Submit the analysis request

Depending on the provided input, PANTHER will conduct two types of analysis:

  1. If a character vector is supplied, over-representation analysis will be performed using either Fisher’s exact or binomial test.

  2. If a data frame with gene identifiers and their corresponding expression values is supplied, statistical enrichment test is performed using Mann-Whitney U (Wilcoxon Rank-Sum) test.

rbioapi determines the proper analysis based on the class of the genes parameter. Please refer to the details section of rba_panther_enrich() function manual for more information.

Over-representation analysis

Now, suppose we want to perform an over-representation analysis against the ‘GO biological process’ annotation dataset. In this example, we only provide the gene names, thus over-representation analysis will be conducted:

# Create a variable to store the genes vector
my_genes_vec <- c("p53", "BRCA1", "cdk2", "Q99835", "CDC42",
                  "CDK1","KIF23","PLK1", "RAC2","RACGAP1","RHOA",
                  "RHOB", "PHF14", "RBM3", "MSL1")

# Submit the analysis request.
enriched <- rba_panther_enrich(genes = my_genes_vec,
                               organism = 9606,
                               annot_dataset = "GO:0008150",
                               cutoff = 0.05)
#> Performing PANTHER over-representation analysis (Fisher's exact test) on 15 genes from `organism 9606` against `GO:0008150` datasets.

# Note that we didn't supply the `test_type` parameter.
# In this case, the function will default to using Fisher's exact test # (i.e. `test_type = "FISHER"`).
# You may also use binomial test for the over-representation analysis # (i.e. `test_type = "BINOMIAL"`).

Statistical enrichment analysis

As you can see in the above example, only a vector of gene names was used. We can also use the corresponding expression values of the genes. In this case, PANTHER will perform a statistical enrichment analysis.

To do so, the only change will be to supply a data frame to the genes parameter. Note that in this case, Mann-Whitney U Test will be performed. The data frame should have two columns: the first column should contain the gene identifiers as a character vector; the second column should contain the corresponding expression values as a numeric vector.

# Create a variable to store the data frame
my_genes_df <- data.frame(
  genes = c("p53", "BRCA1", "cdk2", "Q99835", "CDC42",
                  "CDK1","KIF23","PLK1", "RAC2","RACGAP1","RHOA",
                  "RHOB", "PHF14", "RBM3", "MSL1"),
  ## generate random expression values
  expression = runif(15, 0, 10) 
)

# Submit the analysis request.
enriched <- rba_panther_enrich(genes = my_genes_df,
                               organism = 9606,
                               annot_dataset = "GO:0008150",
                               cutoff = 0.05)

# Note that we didn't supply the `test_type` parameter.
# In this case, the function will default to Mann-Whitney U Test
# (i.e. `test_type = "Mann-Whitney"`).
# This is the only valid value for the statistical enrichment analysis test,
# thus ommiting or supplying it will not make a difference.

Please Note: Other services supported by rbioapi also provide Over-representation analysis tools. Please see the vignette article Do with rbioapi: Over-Representation (Enrichment) Analysis in R (link to the documentation site) for an in-depth review.

Tree grafter

rba_panther_tree_grafter() is an equivalent to the “Graft sequence into PANTHER library of trees” tool.


How to Cite?

To cite PANTHER (Please see https://www.pantherdb.org/publications.jsp#HowToCitePANTHER):

  • Huaiyu Mi, Dustin Ebert, Anushya Muruganujan, Caitlin Mills, Laurent-Philippe Albou, Tremayne Mushayamaha, Paul D Thomas, PANTHER version 16: a revised family classification, tree-based classification tool, enhancer regions and extensive API, Nucleic Acids Research, Volume 49, Issue D1, 8 January 2021, Pages D394–D403, https://doi.org/10.1093/nar/gkaa1106

To cite rbioapi:

  • Moosa Rezwani, Ali Akbar Pourfathollah, Farshid Noorbakhsh, rbioapi: user-friendly R interface to biologic web services’ API, Bioinformatics, Volume 38, Issue 10, 15 May 2022, Pages 2952–2953, https://doi.org/10.1093/bioinformatics/btac172

Session info

#> R version 4.4.2 (2024-10-31)
#> Platform: x86_64-pc-linux-gnu
#> Running under: Ubuntu 24.04.1 LTS
#> 
#> Matrix products: default
#> BLAS:   /usr/lib/x86_64-linux-gnu/openblas-pthread/libblas.so.3 
#> LAPACK: /usr/lib/x86_64-linux-gnu/openblas-pthread/libopenblasp-r0.3.26.so;  LAPACK version 3.12.0
#> 
#> locale:
#>  [1] LC_CTYPE=C.UTF-8       LC_NUMERIC=C           LC_TIME=C.UTF-8       
#>  [4] LC_COLLATE=C.UTF-8     LC_MONETARY=C.UTF-8    LC_MESSAGES=C.UTF-8   
#>  [7] LC_PAPER=C.UTF-8       LC_NAME=C              LC_ADDRESS=C          
#> [10] LC_TELEPHONE=C         LC_MEASUREMENT=C.UTF-8 LC_IDENTIFICATION=C   
#> 
#> time zone: UTC
#> tzcode source: system (glibc)
#> 
#> attached base packages:
#> [1] stats     graphics  grDevices utils     datasets  methods   base     
#> 
#> other attached packages:
#> [1] rbioapi_0.8.1
#> 
#> loaded via a namespace (and not attached):
#>  [1] httr_1.4.7        cli_3.6.3         knitr_1.49        rlang_1.1.4      
#>  [5] xfun_0.50         textshaping_0.4.1 jsonlite_1.8.9    DT_0.33          
#>  [9] htmltools_0.5.8.1 ragg_1.3.3        sass_0.4.9        rmarkdown_2.29   
#> [13] crosstalk_1.2.1   evaluate_1.0.3    jquerylib_0.1.4   fastmap_1.2.0    
#> [17] yaml_2.3.10       lifecycle_1.0.4   compiler_4.4.2    fs_1.6.5         
#> [21] htmlwidgets_1.6.4 systemfonts_1.1.0 digest_0.6.37     R6_2.5.1         
#> [25] curl_6.1.0        magrittr_2.0.3    bslib_0.8.0       tools_4.4.2      
#> [29] pkgdown_2.1.1     cachem_1.1.0      desc_1.4.3