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")
library(orthogene)
data("exp_mouse")
# Setting to "homologene" for the purposes of quick demonstration.
# We generally recommend using method="gprofiler" (default).
method <- "homologene"
It’s not always clear whether a dataset is using the original species gene names, human gene names, or some other species’ gene names.
infer_species
takes a list/matrix/data.frame with genes and
infers the species that they best match to!
For the sake of speed, the genes extracted from gene_df
are tested against genomes from only the following 6 test_species
by default:
- human
- monkey
- rat
- mouse
- zebrafish
- fly
However, you can supply your own list of test_species
, which will
be automatically be mapped and standardised using map_species
.
matches <- orthogene::infer_species(gene_df = exp_mouse,
method = method)
## Preparing gene_df.
## sparseMatrix format detected.
## Extracting genes from rownames.
## 15,259 genes extracted.
## Testing for gene overlap with: human
## Retrieving all genes using: homologene.
## Retrieving all organisms available in homologene.
## Mapping species name: human
## Common name mapping found for human
## 1 organism identified from search: 9606
## Gene table with 19,129 rows retrieved.
## Returning all 19,129 genes from human.
## Testing for gene overlap with: monkey
## Retrieving all genes using: homologene.
## Retrieving all organisms available in homologene.
## Mapping species name: monkey
## Common name mapping found for monkey
## 1 organism identified from search: 9544
## Gene table with 16,843 rows retrieved.
## Returning all 16,843 genes from monkey.
## Testing for gene overlap with: rat
## Retrieving all genes using: homologene.
## Retrieving all organisms available in homologene.
## Mapping species name: rat
## Common name mapping found for rat
## 1 organism identified from search: 10116
## Gene table with 20,616 rows retrieved.
## Returning all 20,616 genes from rat.
## Testing for gene overlap with: mouse
## Retrieving all genes using: homologene.
## Retrieving all organisms available in homologene.
## Mapping species name: mouse
## Common name mapping found for mouse
## 1 organism identified from search: 10090
## Gene table with 21,207 rows retrieved.
## Returning all 21,207 genes from mouse.
## Testing for gene overlap with: zebrafish
## Retrieving all genes using: homologene.
## Retrieving all organisms available in homologene.
## Mapping species name: zebrafish
## Common name mapping found for zebrafish
## 1 organism identified from search: 7955
## Gene table with 20,897 rows retrieved.
## Returning all 20,897 genes from zebrafish.
## Testing for gene overlap with: fly
## Retrieving all genes using: homologene.
## Retrieving all organisms available in homologene.
## Mapping species name: fly
## Common name mapping found for fly
## 1 organism identified from search: 7227
## Gene table with 8,438 rows retrieved.
## Returning all 8,438 genes from fly.
## Top match:
## - species: mouse
## - percent_match: 92%
To create an example dataset, turn the gene names into rat genes.
exp_rat <- orthogene::convert_orthologs(gene_df = exp_mouse,
input_species = "mouse",
output_species = "rat",
method = method)
matches <- orthogene::infer_species(gene_df = exp_rat,
method = method)
To create an example dataset, turn the gene names into human genes.
exp_human <- orthogene::convert_orthologs(gene_df = exp_mouse,
input_species = "mouse",
output_species = "human",
method = method)
matches <- orthogene::infer_species(gene_df = exp_human,
method = method)
test_species
You can even supply test_species
with the name of one of the R packages that
orthogene
gets orthologs from. This will test against all species available
in that particular R package.
For example, by setting test_species="homologene"
we automatically test for
% gene matches in each of the 20+ species available in homologene
.
matches <- orthogene::infer_species(gene_df = exp_human,
test_species = method,
method = method)
utils::sessionInfo()
R version 4.4.1 (2024-06-14)
Platform: x86_64-apple-darwin20
Running under: macOS Monterey 12.7.6
Matrix products: default
BLAS: /Library/Frameworks/R.framework/Versions/4.4-x86_64/Resources/lib/libRblas.0.dylib
LAPACK: /Library/Frameworks/R.framework/Versions/4.4-x86_64/Resources/lib/libRlapack.dylib; LAPACK version 3.12.0
locale:
[1] C/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.12.0 BiocStyle_2.34.0
loaded via a namespace (and not attached):
[1] gtable_0.3.6 babelgene_22.9
[3] xfun_0.48 bslib_0.8.0
[5] ggplot2_3.5.1 htmlwidgets_1.6.4
[7] rstatix_0.7.2 lattice_0.22-6
[9] vctrs_0.6.5 tools_4.4.1
[11] generics_0.1.3 yulab.utils_0.1.7
[13] parallel_4.4.1 tibble_3.2.1
[15] fansi_1.0.6 highr_0.11
[17] pkgconfig_2.0.3 Matrix_1.7-1
[19] data.table_1.16.2 homologene_1.4.68.19.3.27
[21] ggplotify_0.1.2 lifecycle_1.0.4
[23] compiler_4.4.1 farver_2.1.2
[25] treeio_1.30.0 tinytex_0.53
[27] munsell_0.5.1 carData_3.0-5
[29] ggtree_3.14.0 ggfun_0.1.7
[31] gprofiler2_0.2.3 htmltools_0.5.8.1
[33] sass_0.4.9 yaml_2.3.10
[35] lazyeval_0.2.2 plotly_4.10.4
[37] Formula_1.2-5 pillar_1.9.0
[39] car_3.1-3 ggpubr_0.6.0
[41] jquerylib_0.1.4 tidyr_1.3.1
[43] cachem_1.1.0 grr_0.9.5
[45] magick_2.8.5 abind_1.4-8
[47] nlme_3.1-166 tidyselect_1.2.1
[49] aplot_0.2.3 digest_0.6.37
[51] dplyr_1.1.4 purrr_1.0.2
[53] bookdown_0.41 labeling_0.4.3
[55] fastmap_1.2.0 grid_4.4.1
[57] colorspace_2.1-1 cli_3.6.3
[59] magrittr_2.0.3 patchwork_1.3.0
[61] utf8_1.2.4 broom_1.0.7
[63] ape_5.8 withr_3.0.2
[65] scales_1.3.0 backports_1.5.0
[67] httr_1.4.7 rmarkdown_2.28
[69] ggsignif_0.6.4 evaluate_1.0.1
[71] knitr_1.48 viridisLite_0.4.2
[73] gridGraphics_0.5-1 rlang_1.1.4
[75] Rcpp_1.0.13 glue_1.8.0
[77] tidytree_0.4.6 BiocManager_1.30.25
[79] jsonlite_1.8.9 R6_2.5.1
[81] fs_1.6.4