Abstract
Summary
Large-scale comparative studies rely on the application of both phylogenetic trees and phenotypic data, both of which come from a variety of sources, but due to the changing nature of phylogenetic classification over time, many taxon names in comparative datasets do not match the nomenclature in phylogenetic trees. Manual curation of taxonomic synonyms in large comparative datasets can be daunting. To address this issue, we introduce PhyloMatcher, a tool which allows for programmatic querying of the National Center for Biotechnology Information Taxonomy and Global Biodiversity Information Facility databases to find associated synonyms with given target species names.
Availability and implementation
PhyloMatcher is easily installed as a Python package with pip, or as a standalone GUI application. PhyloMatcher source code and documentation are freely available at https://github.com/Lswhiteh/PhyloMatcher, the GUI application can be downloaded from the Releases page.
1 Introduction
Large datasets and broad comparative studies have become the research paradigm across multiple disciplines of biology (Stephens et al. 2015, da Silva et al. 2019, Muñoz and Price 2019, Yu and Nielsen 2019, Pal et al. 2020, Wüest et al. 2020, Xia et al. 2020, Tolani et al. 2021). The rise of -omics technologies and high-throughput data collection permit rapid collection of data reflecting a wide variety of physiological, morphological, behavioral, and ecological traits (e.g. Nilsson et al. 2019, Li et al. 2020, Modahl et al. 2020, Chen et al. 2021). Genomic methods and the decreasing cost of sequencing have also made it possible to assemble large-scale phylogenies that will increasingly facilitate comparative exploration of trait data to illuminate macroevolutionary and macroecological patterns (e.g. Buckley et al. 2010, Jetz et al. 2012, Prum et al. 2015, Varga et al. 2019, Feng et al. 2020, Kim et al. 2021, Suvorov et al. 2022a,b). Despite the newfound abundance of comparative datasets and phylogenies, data that originate from different sources via disparate techniques are not always immediately compatible, and require careful curation prior to subsequent analysis (Marx 2013, Leonelli 2019, Pal et al. 2020, Xia et al. 2020).
A key necessity for broad studies of macroecology and trait evolution is that comparative data for each taxon must be matched to the appropriate branch tips within phylogenetic trees, which is confounded by mismatches of names between the dataset and the tree (Fig. 1). Taxonomic ambiguity can result from several sources (Boyle et al. 2013) including spelling (or orthographic) variants, homotypic synonyms (different names applied to the same type specimen), heterotypic synonyms (different names applied to different type specimens that might represent the same taxon), homonyms (the same name applied to disparate taxa), variation in naming philosophy (e.g. “lumping” versus “splitting” taxa; de Queiroz and Gauthier 1994), and simple misspellings. In addition, taxonomic naming conventions and the accepted names for various taxa have fluctuated through time (e.g. Pauly et al. 2009, Eardley and Urban 2006), so many species have accumulated a multitude of synonymous names (Patterson et al. 2010, Garnett et al. 2020). However, as names have fluctuated, data repositories containing references to those names have remained comparatively stagnant (Schellenberger Costa et al. 2023). For example, specimens in natural history research collections have been labeled with these various synonyms through time—an artifact which has been inherited by comparative datasets compiled from the specimens. These collections are vast in both their taxonomic breadth and in the number of samples available for many taxa, facilitating broad comparative studies of a multitude of traits, and because specimens were collected at various times in history, they provide valuable opportunities for time series analyses that would not otherwise be possible (Lister 2011, Holmes et al. 2016, Lopez et al. 2020, Shultz et al. 2021, though this is not without challenges, see Davis et al. 2023). However, the use of these collections in a modern phylogenetically informed framework requires that taxonomy of the specimens be reconciled with the taxonomy used when constructing the phylogeny. Similar problems can pervade field-collected datasets. The resulting taxonomic ambiguity poses a serious challenge to phylogenetic comparative analyses. The problem is easily rectified manually with small numbers of taxa, but it becomes less tractable as the number of study taxa increases. In especially taxonomically broad studies, reconciling taxonomic names can impose a serious impediment.
Figure 1.
Mismatch of taxonomic nomenclature between species tips in phylogenetic trees and comparative datasets can lead to missing data and taxa being dropped from comparative analysis (A). We present a programmatic tool, PhyloMatcher, that can be used as an intermediary step in comparative workflows (B), to reconcile taxonomic mismatches, increasing the accuracy, completeness, and speed of comparative analyses. PhyloMatcher functions by compiling candidate synonyms for species names from a phylogenetic tree (C), and then reassigning names in the comparative dataset to match names in the tree.
Because of the pervasiveness of mismatched taxonomy throughout biological data, the ability to programmatically reconcile names as an initial step in comparative analyses would be valuable. There are several tools available to fix taxonomic problems in datasets. Taxamatch (Rees 2014) uses fuzzy-matching to reconcile misspellings and typographic errors in taxonomic names, however it is implemented in Oracle PL/SQL, which may limit the breadth of its appeal beyond database administration. Taxize (Chamberlain and Szöcs 2013, Chamberlain et al. 2020) is an R package which can query many databases to find correct spellings of a given name, as well as up- and down-stream taxonomic hierarchy. However, it does not have a method for choosing the “best” or canonical name. For instance, searching the misspelled & archaic “Feliss leo” is corrected to the archaic name “Felis leo”, but not matched to the modern “Panthera leo”. Galaxy Tools Taxonmatcher (galaxy-tool-taxonmatcher 2023) is a Python package which can find synonyms between two taxonomy databases but requires manual reconciliation of names in datasets. The Taxonomic Name Resolution Service (TNRS; Boyle et al. 2013) matches synonyms in lists of taxonomic names and replaces them with accepted nomenclature via a web interface (https://tnrs.biendata.org/), but it is limited to plant taxonomy. To our knowledge, there are no other freely available utilities or services that match and reconcile synonymous taxonomic names between datasets and phylogenies, and none that operate on taxonomic groups beyond plants. Repositories for naming synonyms already exist: the Global Biodiversity Information Facility (Telenius 2011) and National Center for Biotechnology Information Taxonomy (NCBI; Schoch et al. 2020) databases list known current and historical names that have been applied to each taxon. Thus, there are resources available to identify mismatched names, but their use still requires cumbersome manual searching and matching of synonyms to reconcile them with the naming convention used in any given phylogeny.
Here, we present a tool for programmatically matching taxonomic names between datasets: PhyloMatcher, which we have made available as a Python command line tool and a GUI application. We first describe the software’s algorithm (Fig. 1) and then describe how we used PhyloMatcher to reconcile synonymous names for a dataset of mammalian taxonomy with the naming conventions from the phylogenies provided at VertLife.org (Jetz et al. 2012, Tonini et al. 2016, Jetz and Pyron 2018, Stein et al. 2018, Upham et al. 2019). We provide a comparison between manual matching of names with the output of PhyloMatcher in both accuracy and speed of matching. We show that our method provides a dramatic reduction in the time needed to link species-level data to phylogenetic trees for comparative analyses, thus overcoming a significant barrier to the analysis of large comparative datasets.
2 Methods
The initial implementation of PhyloMatcher draws from two sources (GBIF and NCBI) to populate lists of synonymous taxonomy (Fig. 1). These two databases differ in their structure, so we used different approaches to extract names from each of them. We describe both implementations in the following sections, followed by a brief example of an application of PhyloMatcher.
2.1 GBIF implementation
PhyloMatcher uses the species module of the pygbif (Telenius 2011) package as an API client to query GBIF for synonyms. For a given species in the input file, the GBIF backbone database is first queried to retrieve the base-level identity for the target species using the name_backbone function. Upon successful retrieval the current name used by GBIF is stored and the unique species identifier is used to access any known synonyms using the name_usage function. If a “canonical” name is found that is different from the target name, it is returned along with the synonyms and current name. This process is done in parallel using the concurrent.futures package in Python with a user-specified number of threads, four being the default. Once all queries are complete, the results are collated into a CSV file where the first column is the input species name and each successive column is a synonym found in the GBIF database.
2.2 NCBI implementation
The NCBI querying module of PhyloMatcher uses the Entrez module (Schuler et al. 1996) of the Biopython package (Cock et al. 2009) as an API client to query the NCBI Taxonomy database for synonyms. Similar to the GBIF module, the database identifier for a given input species is retrieved using the run_esearch function. Due to the strictness of NCBI’s search, in the case of a failure during this step, a few common letter substitutions are searched (such as swapping “um” for “us” in Orthriophis taeniurus, e.g.). Once all possible identifiers have been retrieved, the list is checked for duplicate entries, which are removed. XML entries for all filtered IDs are retrieved and parsed simultaneously using the efetch and read functions. For each entry in the resulting data the “OtherNames” and “Name” fields are exhaustively searched, and all unique entries are returned. Results are collated and output identically to the GBIF module explained above.
2.3 Merging the phylogeny with comparative data
Once synonyms have been retrieved a separate module allows for matching comparative data to the phylogenetic tips found in the original data. This module takes in two files: a csv file containing comparative values where the first column is the binomial species name (genus and species, separated by underscores), and the output csv produced by PhyloMatcher’s querying module. The remaining columns in the comparative file can be any data associated with each species such as trait data, occurrence observations, or a multitude of other species-level data to be used in comparative analyses. The synonym lists are stored as a list-of-lists (Fig. 1), and the comparative data are loaded line-by-line. For each line in the comparative file the listed species is checked against the species lists, and if present, is swapped for the name in the phylogeny. A modified version of the comparative data file is written containing a column with the phylogeny-matched species names.
2.4 Programmatic versus manual matching
To test the functionality and utility of PhyloMatcher, we matched taxonomic names for a dataset of approximately 24 million occurrence observations of mammals with 15 082 unique species names from the GBIF database with taxonomic names from the mammalian phylogeny from VertLife.org both manually and using PhyloMatcher. The tree contains 5911 of the approximately 6000 extant mammal species (Upham et al. 2019), suggesting that there are a large number of taxonomic synonyms present in the occurrence data. We searched the NCBI and GBIF databases for species names in the GBIF mammal occurrence data that do not match tip names in the phylogeny from Vertlife.org (Upham et al. 2019). We tracked the time spent manually collecting synonymous names for the mammal dataset, which we compared to the run-time of PhyloMatcher given the same input. We further compared the number of candidate naming synonyms found by each method and the proportion of missing data that was recovered.
3 Results
There were 947 out of 5911 (16%) species in the mammalian phylogeny that were not matched by species occurrence observations in the GBIF dataset. Some species were simply not represented in the occurrence data, but others were the product of mismatched taxonomy. Running PhyloMatcher produced 1303 unique candidate naming synonyms, preserving data from 379 species that would have been dropped from subsequent analysis (40% of the missing species). We then replaced synonyms in the occurrence data (∼24 million data points) with names matching the tree, resulting in a reconciled occurrence dataset ready for comparative analysis. The name reconciliation in the occurrence dataset took roughly 600 s of compute time on a single core.
In contrast, our manual effort produced a total of 646 candidate naming synonyms, effectively reconciling 165 species that would have been otherwise dropped from comparative analyses because of mismatched nomenclature (17.4% of the total number of missing data), leading to a loss of 214 species compared to PhyloMatcher. In addition, the manual reconciliation of names took 6.8 h, compared to 107 s of computational time on 8 computing cores for PhyloMatcher for the query step. In summary, PhyloMatcher not only found more candidate synonyms to match taxonomic names in the mammalian occurrence data to the phylogeny than manual matching found and preserved more than double the number of dropped taxa that manual matching was able to, it did so in a small fraction of the time.
4 Discussion
Here, we provide a solution to a longstanding challenge to large-scale comparative studies: the problem of mismatched taxonomy (Dayrat 2005, Patterson et al. 2010, Garnett et al. 2020). Taxonomic conflicts have slowed advances in multiple fields of biology, including phylogeography, evolutionary biology and population genetics, comparative morphology, and biomechanics, and ecology (Dayrat 2005, Bortolus 2008). Efforts to quantify biodiversity (McNeely 2002, Schlick-Steiner et al. 2010) and the study of pathogens (especially fungi; Wu et al. 2019, Almeida-Silva et al. 2021) have been especially impacted by ambiguous taxonomy. We created PhyloMatcher to resolve many of these conflicts. The PhyloMatcher software is available both as a command line program and a GUI application, and provides a programmatic means to reconcile taxonomic names in trait data with the species labels in phylogenetic trees. PhyloMatcher is easy to install and incorporate into existing workflows, and leverages pre-existing and continually maintained databases that include lists of synonymous species names. The input for PhyloMatcher is a list of taxonomic names from a phylogenetic tree and a trait dataset to be matched to it. The output is a new data file with reconciled species names, ready for comparative analyses. In our validation tests, PhyloMatcher roughly doubled the number of candidate matches in our test dataset relative to manual matching, and in a small fraction of the time.
We created PhyloMatcher to assist, narrowly, with the task of matching taxonomic names between comparative data and branch tips of phylogenies. Taxonomy is fraught with complications arising from fluctuating philosophies and practices (Patterson et al. 2010, Garnett et al. 2020, Schellenberger Costa et al. 2023). Indeed, taxonomy differs even among database efforts to catalog and reconcile taxon names (Schellenberger Costa et al. 2023). Specimen labels in research collections that have been assembled through time reflect those complexities, hindering analyses that use taxonomic names as the uniting identifiers across datasets. Naming philosophy, which of the synonymous names are generally accepted, and references to particular type specimens (i.e. homotypic versus heterotypic synonyms) are beyond the scope of what PhyloMatcher is designed for. PhyloMatcher takes a pluralistic approach, finding all possible synonyms for each searched name with the expressed goal of utilizing as much of the available data as possible. Of course, this means that some care should be taken in its use. Users are advised to consult recent taxonomic references for their study system to inform decisions regarding appropriate naming standards. Further, careful data hygienics is always a best-practices recommendation. Cross-code homonyms (the same name referring to disparate taxa) may exist among the taxon names in broad comparative datasets, however they should be easily uncovered, appearing as outliers, when looking at almost any trait data.
With the rise of large datasets and taxonomically broad phylogenetic comparative analyses, tools that enhance the integration of multiple data types are increasingly important. Incorporating PhyloMatcher as a simple intermediate step in pre-existing workflows will improve the speed, accuracy, and phylogenetic completeness of comparative biology studies.
Acknowledgements
The authors thank Daniel Matute, Dan Schrider, Evan Drage, Tyler Kent, Andrius Dagilis, Sean Anderson, and members of the Matute and Schrider labs for their helpful comments on this manuscript. They also grateful for the efforts of the Associate Editor, Lina Ma and three anonymous reviewers. Their input has improved not only our manuscript, but also the software tool it describes.
Contributor Information
Jonathan A Rader, Department of Biology, University of North Carolina at Chapel Hill, Chapel Hill, NC, 27599-3280, United States.
Madelyn A Pivovarnik, Department of Biology, University of North Carolina at Chapel Hill, Chapel Hill, NC, 27599-3280, United States.
Matias E Vantilburg, Department of Biology, University of North Carolina at Chapel Hill, Chapel Hill, NC, 27599-3280, United States.
Logan S Whitehouse, Department of Genetics, University of North Carolina at Chapel Hill, Chapel Hill, NC, 27599-7264, United States.
Conflict of interest
None declared.
Funding
This work was supported by the National Institutes of Health under award [R01AI153523].
Data availability
There are no data associated with our manuscript. The software that our manuscript describes is available at the noted github repository, though.
References
- Almeida-Silva F, de Melo Teixeira M, Matute DR. et al. Genomic diversity analysis reveals a strong population structure in Histoplasma capsulatum LAmA (Histoplasma suramericanum). JoF 2021;7:865. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Bortolus A. Error cascades in the biological sciences: the unwanted consequences of using bad taxonomy in ecology. AMBIO J Hum Environ 2008;37:114–8. [DOI] [PubMed] [Google Scholar]
- Boyle B, Hopkins N, Lu Z. et al. The taxonomic name resolution service: an online tool for automated standardization of plant names. BMC Bioinformatics 2013;14:16. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Buckley LB, Davies TJ, Ackerly DD. et al. Phylogeny, niche conservatism and the latitudinal diversity gradient in mammals. Proc Biol Sci 2010;277:2131–8. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Chamberlain S, Szoecs E, Foster Z. et al. taxize: Taxonomic information from around the web. R package version 0.9.98, 2020. https://github.com/ropensci/taxize.
- Chamberlain SA, Szöcs E.. taxize: taxonomic search and retrieval in R. F1000Res 2013;2:191. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Chen L, Fan R, Tang F. et al. Advanced single-cell omics technologies and informatics tools for genomics, proteomics, and bioinformatics analysis. Genomics Proteomics Bioinf 2021;19:343–5. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Cock PJA, Antao T, Chang JT. et al. Biopython: freely available Python tools for computational molecular biology and bioinformatics. Bioinformatics 2009;25:1422–3. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Davis CL, Guralnick RP, Zipkin EF. et al. Challenges and opportunities for using natural history collections to estimate insect population trends. J Anim Ecol 2023;92:237–49. [DOI] [PubMed] [Google Scholar]
- de Queiroz K, Gauthier J.. Toward a phylogenetic system of biological nomenclature. Trends Ecol Evol 1994;9:27–31. [DOI] [PubMed] [Google Scholar]
- da Silva DSM, da Silva WMC, RuiZhe G et al. Big data trends in bioinformatics. In: 2019 IEEE International Conference on Bioinformatics and Biomedicine (BIBM), 2019, 1862–67.
- Dayrat B. Towards integrative taxonomy. Biol J Linnean Soc 2005;85:407–15. [Google Scholar]
- Eardley CD, Urban RP.. Taxonomic name changes in Afrotropical bees (Hymenoptera : Apoidea). Afr Entomol 2006;14:161–74. [Google Scholar]
- Feng S, Stiller J, Deng Y. et al. Dense sampling of bird diversity increases power of comparative genomics. Nature 2020;587:252–7. [DOI] [PMC free article] [PubMed] [Google Scholar]
- galaxy-tool-taxonmatcher. Python, Naturalis Biodiversity Center, 2023.
- Garnett ST, Christidis L, Conix S. et al. Principles for creating a single authoritative list of the world’s species. PLoS Biol 2020;18:e3000736. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Holmes MW, Hammond TT, Wogan GOU. et al. Natural history collections as windows on evolutionary processes. Mol Ecol 2016;25:864–81. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Jetz W, Pyron RA.. The interplay of past diversification and evolutionary isolation with present imperilment across the amphibian tree of life. Nat Ecol Evol 2018;2:850–8. [DOI] [PubMed] [Google Scholar]
- Jetz W, Thomas GH, Joy JB. et al. The global diversity of birds in space and time. Nature 2012;491:444–8. [DOI] [PubMed] [Google Scholar]
- Kim BY, Wang JR, Miller DE. et al. Highly contiguous assemblies of 101 drosophilid genomes. Elife 2021;10:e66405. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Leonelli S. The challenges of big data biology. Elife 2019;8:e47381. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Li Y, Ma A, Mathé EA. et al. Elucidation of biological networks across complex diseases using single-cell omics. Trends Genet 2020;36:951–66. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Lister AM, Climate Change Research Group. Natural history collections as sources of long-term datasets. Trends Ecol Evol 2011;26:153–4. [DOI] [PubMed] [Google Scholar]
- Lopez L, Turner KG, Bellis ES. et al. Genomics of natural history collections for understanding evolution in the wild. Mol Ecol Resour 2020;20:1153–60. [DOI] [PubMed] [Google Scholar]
- Marx V. The big challenges of big data. Nature 2013;498:255–60. [DOI] [PubMed] [Google Scholar]
- McNeely JA. The role of taxonomy in conserving biodiversity. J Nat Conserv 2002;10:145–53. [Google Scholar]
- Modahl CM, Brahma RK, Koh CY. et al. Omics technologies for profiling toxin diversity and evolution in snake venom: impacts on the discovery of therapeutic and diagnostic agents. Annu Rev Anim Biosci 2020;8:91–116. [DOI] [PubMed] [Google Scholar]
- Muñoz MM, Price SA.. The future is bright for evolutionary morphology and biomechanics in the era of big data. Integr Comp Biol 2019;59:599–603. [DOI] [PubMed] [Google Scholar]
- Nilsson RH, Anslan S, Bahram M. et al. Mycobiome diversity: high-throughput sequencing and identification of fungi. Nat Rev Microbiol 2019;17:95–109. [DOI] [PubMed] [Google Scholar]
- Pal S, Mondal S, Das G. et al. Big data in biology: the hope and present-day challenges in it. Gene Rep 2020;21:100869. [Google Scholar]
- Patterson DJ, Cooper J, Kirk PM. et al. Names are key to the big new biology. Trends Ecol Evol 2010;25:686–91. [DOI] [PubMed] [Google Scholar]
- Pauly GB, Hillis DM, Cannatella DC. et al. Taxonomic freedom and the role of official lists of species names. Herpetologica 2009;65:115–28. [Google Scholar]
- Prum RO, Berv JS, Dornburg A. et al. A comprehensive phylogeny of birds (Aves) using targeted next-generation DNA sequencing. Nature 2015;526:569–73. [DOI] [PubMed] [Google Scholar]
- Rees T. Taxamatch, an algorithm for near (‘Fuzzy’) matching of scientific names in taxonomic databases. PLoS One 2014;9:e107510. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Schellenberger Costa D, Boehnisch G, Freiberg M. et al. The big four of plant taxonomy – a comparison of global checklists of vascular plant names. New Phytol 2023. 10.1111/nph.18961. [DOI] [PubMed] [Google Scholar]
- Schlick-Steiner BC, Steiner FM, Seifert B. et al. Integrative taxonomy: a multisource approach to exploring biodiversity. Annu Rev Entomol 2010;55:421–38. [DOI] [PubMed] [Google Scholar]
- Schoch CL, Ciufo S, Domrachev M. et al. NCBI taxonomy: a comprehensive update on curation, resources and tools. Database (Oxford) 2020;2020:baaa062. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Schuler GD, Epstein JA, Ohkawa H et al. Entrez: molecular biology database and retrieval system. In: Doolittle RF (ed.), Methods in Enzymology, Computer Methods for Macromolecular Sequence Analysis. Cambridge, MA, USA: Academic Press, 1996, 141–62. [DOI] [PubMed] [Google Scholar]
- Shultz AJ, Adams BJ, Bell KC. et al. Natural history collections are critical resources for contemporary and future studies of urban evolution. Evol Appl 2021;14:233–47. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Stein RW, Mull CG, Kuhn TS. et al. Global priorities for conserving the evolutionary history of sharks, rays and chimaeras. Nat Ecol Evol 2018;2:288–98. [DOI] [PubMed] [Google Scholar]
- Stephens ZD, Lee SY, Faghri F. et al. Big data: astronomical or genomical? PLoS Biol 2015;13:e1002195. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Suvorov A, Kim BY, Wang J. et al. Widespread introgression across a phylogeny of 155 Drosophila genomes. Curr Biol 2022a;32:111–23.e5. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Suvorov A, Scornavacca C, Fujimoto MS. et al. Deep ancestral introgression shapes evolutionary history of dragonflies and damselflies. Syst Biol 2022b;71:526–46. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Telenius A. Biodiversity information goes public: GBIF at your service. Nord J Bot 2011;29:378–81. [Google Scholar]
- Tonini JFR, Beard KH, Ferreira RB. et al. Fully-sampled phylogenies of squamates reveal evolutionary patterns in threat status. Biol Conserv 2016;204:23–31. [Google Scholar]
- Tolani P, Gupta S, Yadav K et al. Chapter Four – Big data, integrative omics and network biology. In: Donev R and Karabencheva-Christova T (eds), Advances in Protein Chemistry and Structural Biology. Cambridge, MA, USA: Academic Press, 2021, 127–60. [DOI] [PubMed] [Google Scholar]
- Upham NS, Esselstyn JA, Jetz W. et al. Inferring the mammal tree: species-level sets of phylogenies for questions in ecology, evolution, and conservation. PLoS Biol 2019;17:e3000494. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Varga T, Krizsán K, Földi C. et al. Megaphylogeny resolves global patterns of mushroom evolution. Nat Ecol Evol 2019;3:668–78. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Wu B, Hussain M, Zhang W. et al. Current insights into fungal species diversity and perspective on naming the environmental DNA sequences of fungi. Mycology 2019;10:127–40. [DOI] [PMC free article] [PubMed] [Google Scholar]
- Wüest RO, Zimmermann NE, Zurell D. et al. Macroecology in the age of big data – where to go from here? J Biogeogr 2020;47:1–12. [Google Scholar]
- Xia J, Wang J, Niu S. et al. Research challenges and opportunities for using big data in global change biology. Glob Chang Biol 2020;26:6040–61. [DOI] [PubMed] [Google Scholar]
- Yu R, Nielsen J.. Big data in yeast systems biology. FEMS Yeast Res 2019;19:foz070. [DOI] [PubMed] [Google Scholar]
Associated Data
This section collects any data citations, data availability statements, or supplementary materials included in this article.
Data Availability Statement
There are no data associated with our manuscript. The software that our manuscript describes is available at the noted github repository, though.

