GitHub - neurogenomics/orthogene: 𧬠o r t h o g e n e π§¬β¨β¨β¨β¨β¨β¨β¨ Interspecies gene mappingβ¨β¨β¨β¨β¨ π¦ π π± π π³ π π π π π πͺ± π πͺ° π π π π¦ π π π π¦ π π π π π π π π π π π π π π π π π 𦧠π π¦ π πββοΈ (original) (raw)
orthogene
: Interspecies gene mapping
Authors: Brian Schilder
README updated: Mar-09-2025
Intro
orthogene
is an R package for easy mapping of orthologous genes across hundreds of species. It pulls up-to-date gene ortholog mappings across700+ organisms. It also provides various utility functions to aggregate/expand common objects (e.g. data.frames, gene expression matrices, lists) using 1:1, many:1, 1:many or many:manygene mappings, both within- and between-species.
In brief, orthogene
lets you easily:
- convert_orthologs between any two species.
- map_species names onto standard taxonomic ontologies.
- report_orthologs between any two species.
- map_genes onto standard ontologies
- aggregate_mapped_genes in a matrix.
- get all_genes from any species.
- infer_species from gene names.
- create_background gene lists based one, two, or more species.
- get_silhouettes of each species from phylopic.
- prepare_tree with evolutionary divergence times across >147,000 species.
Citation
If you use orthogene
, please cite:
Brian M. Schilder, Nathan G. Skene (2022). orthogene: Interspecies gene mapping. R package version 1.4.0,https://doi.org/doi:10.18129/B9.bioc.orthogene
Documentation website
PDF manual
Installation
if (!requireNamespace("BiocManager", quietly = TRUE)) install.packages("BiocManager")
orthogene is only available on Bioconductor>=3.14
if(BiocManager::version()<"3.14") BiocManager::install(update = TRUE, ask = FALSE)
BiocManager::install("orthogene")
Docker
orthogene
can also be installed via aDockerorSingularitycontainer with Rstudio pre-installed. Further instructions provided here.
Methods
library(orthogene)
data("exp_mouse")
Setting to "homologene" for the purposes of quick demonstration.
We generally recommend using method="gprofiler" (default).
method <- "homologene"
For most functions, orthogene
lets users choose between different methods, each with complementary strengths and weaknesses:"gprofiler"
, "homologene"
, and "babelgene"
In general, we recommend you use "gprofiler"
when possible, as it tends to be more comprehensive.
While "babelgene"
contains less species, it queries a wide variety of orthology databases and can return a column βsupport_nβ that tells you how many databases support each ortholog gene mapping. This can be helpful when you need a semi-quantitative measure of mapping quality.
Itβs also worth noting that for smaller gene sets, the speed difference between these methods becomes negligible.
gprofiler | homologene | babelgene | |
---|---|---|---|
Reference organisms | 700+ | 20+ | 19 (but cannot convert between pairs of non-human species) |
Gene mappings | More comprehensive | Less comprehensive | More comprehensive |
Updates | Frequent | Less frequent | Less frequent |
Orthology databases | Ensembl, HomoloGene, WormBase | HomoloGene | HGNC Comparison of Orthology Predictions (HCOP), which includes predictions from eggNOG, Ensembl Compara, HGNC, HomoloGene, Inparanoid, NCBI Gene Orthology, OMA, OrthoDB, OrthoMCL, Panther, PhylomeDB, TreeFam and ZFIN |
Data location | Remote | Local | Local |
Internet connection | Required | Not required | Not required |
Speed | Slower | Faster | Medium |
Quick example
Convert orthologs
convert_orthologsis very flexible with what users can supply as gene_df
, and can take adata.frame
/data.table
/tibble
, (sparse) matrix
, orlist
/vector
containing genes.
Genes, transcripts, proteins, SNPs, or genomic ranges will be recognised in most formats (HGNC, Ensembl, RefSeq, UniProt, etc.) and can even be a mixture of different formats.
All genes will be mapped to gene symbols, unless specified otherwise with the ...
arguments (see ?orthogene::convert_orthologs
orherefor details).
Note on non-1:1 orthologs
A key feature ofconvert_orthologsis that it handles the issue of genes with many-to-many mappings across species. This can occur due to evolutionary divergence, and the function of these genes tend to be less conserved and less translatable. Users can address this using different strategies via non121_strategy=
.
gene_df <- orthogene::convert_orthologs(gene_df = exp_mouse, gene_input = "rownames", gene_output = "rownames", input_species = "mouse", output_species = "human", non121_strategy = "drop_both_species", method = method)
## Preparing gene_df.
## sparseMatrix format detected.
## Extracting genes from rownames.
## 15,259 genes extracted.
## Converting mouse ==> human orthologs using: homologene
## Retrieving all organisms available in homologene.
## Mapping species name: mouse
## Common name mapping found for mouse
## 1 organism identified from search: 10090
## Retrieving all organisms available in homologene.
## Mapping species name: human
## Common name mapping found for human
## 1 organism identified from search: 9606
## Checking for genes without orthologs in human.
## Extracting genes from input_gene.
## 13,416 genes extracted.
## Extracting genes from ortholog_gene.
## 13,416 genes extracted.
## Checking for genes without 1:1 orthologs.
## Dropping 46 genes that have multiple input_gene per ortholog_gene (many:1).
## Dropping 56 genes that have multiple ortholog_gene per input_gene (1:many).
## Filtering gene_df with gene_map
## Setting ortholog_gene to rownames.
##
## =========== REPORT SUMMARY ===========
## Total genes dropped after convert_orthologs :
## 2,016 / 15,259 (13%)
## Total genes remaining after convert_orthologs :
## 13,243 / 15,259 (87%)
knitr::kable(as.matrix(head(gene_df)))
astrocytes_ependymal | endothelial-mural | interneurons | microglia | oligodendrocytes | pyramidal CA1 | pyramidal SS | |
---|---|---|---|---|---|---|---|
TSPAN12 | 0.3303571 | 0.5872340 | 0.6413793 | 0.1428571 | 0.1207317 | 0.2864750 | 0.1453634 |
TSHZ1 | 0.4285714 | 0.4468085 | 1.1551724 | 0.4387755 | 0.3621951 | 0.0692226 | 0.8320802 |
ADAMTS15 | 0.0089286 | 0.0978723 | 0.2206897 | 0.0000000 | 0.0231707 | 0.0117146 | 0.0375940 |
CLDN12 | 0.2232143 | 0.1148936 | 0.5517241 | 0.0510204 | 0.2609756 | 0.4376997 | 0.6842105 |
RXFP1 | 0.0000000 | 0.0127660 | 0.2551724 | 0.0000000 | 0.0158537 | 0.0511182 | 0.0751880 |
SEMA3C | 0.1964286 | 0.9957447 | 8.6379310 | 0.2040816 | 0.1853659 | 0.1608094 | 0.2280702 |
convert_orthologs
is just one of the many useful functions inorthogene
. Please see the documentation websitefor the full vignette.
Additional resources
Hex sticker creation
Benchmarking methods
Session Info
## R version 4.4.2 (2024-10-31)
## Platform: aarch64-apple-darwin20
## Running under: macOS Sequoia 15.3.1
##
## Matrix products: default
## BLAS: /Library/Frameworks/R.framework/Versions/4.4-arm64/Resources/lib/libRblas.0.dylib
## LAPACK: /Library/Frameworks/R.framework/Versions/4.4-arm64/Resources/lib/libRlapack.dylib; LAPACK version 3.12.0
##
## locale:
## [1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8
##
## time zone: America/New_York
## tzcode source: internal
##
## attached base packages:
## [1] stats graphics grDevices utils datasets methods base
##
## other attached packages:
## [1] orthogene_1.13.0
##
## loaded via a namespace (and not attached):
## [1] gtable_0.3.6 babelgene_22.9
## [3] xfun_0.51 ggplot2_3.5.1
## [5] htmlwidgets_1.6.4 rstatix_0.7.2
## [7] lattice_0.22-6 vctrs_0.6.5
## [9] tools_4.4.2 generics_0.1.3
## [11] yulab.utils_0.2.0 parallel_4.4.2
## [13] tibble_3.2.1 pkgconfig_2.0.3
## [15] Matrix_1.7-1 data.table_1.17.0
## [17] homologene_1.4.68.19.3.27 ggplotify_0.1.2
## [19] RColorBrewer_1.1-3 desc_1.4.3
## [21] lifecycle_1.0.4 farver_2.1.2
## [23] compiler_4.4.2 treeio_1.30.0
## [25] dlstats_0.1.7 munsell_0.5.1
## [27] carData_3.0-5 ggtree_3.14.0
## [29] gprofiler2_0.2.3 ggfun_0.1.8
## [31] htmltools_0.5.8.1 yaml_2.3.10
## [33] lazyeval_0.2.2 plotly_4.10.4
## [35] Formula_1.2-5 pillar_1.10.1
## [37] car_3.1-3 ggpubr_0.6.0
## [39] tidyr_1.3.1 grr_0.9.5
## [41] abind_1.4-8 nlme_3.1-166
## [43] tidyselect_1.2.1 aplot_0.2.5
## [45] digest_0.6.37 dplyr_1.1.4
## [47] purrr_1.0.4 rprojroot_2.0.4
## [49] fastmap_1.2.0 grid_4.4.2
## [51] here_1.0.1 colorspace_2.1-1
## [53] cli_3.6.4 magrittr_2.0.3
## [55] patchwork_1.3.0 broom_1.0.7
## [57] ape_5.8-1 withr_3.0.2
## [59] scales_1.3.0 backports_1.5.0
## [61] httr_1.4.7 rmarkdown_2.29
## [63] rvcheck_0.2.1 ggsignif_0.6.4
## [65] evaluate_1.0.3 knitr_1.49
## [67] rworkflows_1.0.6 viridisLite_0.4.2
## [69] gridGraphics_0.5-1 rlang_1.1.5
## [71] Rcpp_1.0.14 glue_1.8.0
## [73] tidytree_0.4.6 BiocManager_1.30.25
## [75] renv_1.1.2 rstudioapi_0.17.1
## [77] jsonlite_1.9.1 R6_2.6.1
## [79] badger_0.2.4 fs_1.6.5
Related projects
Tools
- gprofiler2:
orthogene
uses this package.gprofiler2::gorth()
pulls from many orthology mapping databases. - homologene:
orthogene
uses this package. Provides API access to NCBIHomoloGene database. - babelgene:
orthogene
uses this package.babelgene::orthologs()
pulls frommany orthology mapping databases. - annotationTools: For interspecies microarray data.
- orthology: R package for ortholog mapping (deprecated?).
- hpgltools::load_biomart_orthologs(): Helper function to get orthologs from biomart.
- JustOrthologs: Ortholog inference from multi-species genomic sequences.
- orthologr: Ortholog inference from multi-species genomic sequences.
- OrthoFinder: Gene duplication event inference from multi-species genomics.
Databases
- HomoloGene: NCBI database that the R package homologenepulls from.
- gProfiler: Web server for functional enrichment analysis and conversions of gene lists.
- OrtholoGene: Compiled list of gene orthology resources.
Contact
Neurogenomics Lab
UK Dementia Research Institute
Department of Brain Sciences
Faculty of Medicine
Imperial College London
GitHub
DockerHub