Literature DB >> 17553837

MultiPhyl: a high-throughput phylogenomics webserver using distributed computing.

Thomas M Keane1, Thomas J Naughton, James O McInerney.   

Abstract

With the number of fully sequenced genomes increasing steadily, there is greater interest in performing large-scale phylogenomic analyses from large numbers of individual gene families. Maximum likelihood (ML) has been shown repeatedly to be one of the most accurate methods for phylogenetic construction. Recently, there have been a number of algorithmic improvements in maximum-likelihood-based tree search methods. However, it can still take a long time to analyse the evolutionary history of many gene families using a single computer. Distributed computing refers to a method of combining the computing power of multiple computers in order to perform some larger overall calculation. In this article, we present the first high-throughput implementation of a distributed phylogenetics platform, MultiPhyl, capable of using the idle computational resources of many heterogeneous non-dedicated machines to form a phylogenetics supercomputer. MultiPhyl allows a user to upload hundreds or thousands of amino acid or nucleotide alignments simultaneously and perform computationally intensive tasks such as model selection, tree searching and bootstrapping of each of the alignments using many desktop machines. The program implements a set of 88 amino acid models and 56 nucleotide maximum likelihood models and a variety of statistical methods for choosing between alternative models. A MultiPhyl webserver is available for public use at: http://www.cs.nuim.ie/distributed/multiphyl.php.

Entities:  

Mesh:

Year:  2007        PMID: 17553837      PMCID: PMC1933173          DOI: 10.1093/nar/gkm359

Source DB:  PubMed          Journal:  Nucleic Acids Res        ISSN: 0305-1048            Impact factor:   16.971


INTRODUCTION

One of the greatest goals of biology is the reconstruction of the tree of life. Recent advances in high-throughput sequencing technologies have seen an exponential increase in the amount of publicly available genomic data. The huge increase in genomic data requires us to develop efficient high-throughput methods for analysing this data. Nowadays it is usual for whole-genome phylogenetic studies to comprise of thousands of different genes and search through large numbers of possible phylogenies. For example, in supertree analysis, researchers first construct a large number of fully optimized phylogenies with partially overlapping taxa and combine these input trees to produce more comprehensive phylogenetic hypotheses (e.g. 1,2). One of the most accurate techniques for constructing phylogenetic trees is using maximum likelihood (ML) estimation (3). Recently, there have been significant advances in model-based tree search methods that can be mainly attributed to algorithmic improvements rather than hardware improvements. Programs such as Phyml (4), RaxML (5), MrBayes (6) and IQPNNI (7) have each introduced better and faster heuristics that have been shown to repeatedly outperform traditional ML programs such as fastDNAml (8) in terms of computing time and topological accuracy. The impressive results presented by Guindon and Gascuel (4) serve as an example of the extent to which these algorithmic improvements have made it possible to use ML programs to construct relatively large phylogenies quickly using standard hardware. Despite these improvements, it can still take a considerable amount of time to perform large-scale phylogenetic analyses involving thousands of alignments using only a single processor. One popular method of addressing this limitation is to take a number of closely coupled processors to form a dedicated processing cluster for performing high-throughput phylogenetic analysis (9–11). Although extremely effective, these clusters can be prohibitively expensive as they often require dedicated processors and specialized personnel to maintain these systems. On the other hand, it has been shown in a recent study by IBM that Windows and UNIX servers are idle for approximately 95 and 85% of the day respectively (12) while another study showed that on average, desktop machines are idle for between 60 and 80% of the day (13). The term distributed computing is often taken to mean computing using a non-dedicated pre-existing pool of heterogeneous processors that are not localized in a single room or building and can fail arbitrarily. By harnessing the spare clock cycles of multiple semi-idle desktop machines (a semi-idle machine is a machine primarily used by another individual that, because of the nature of the usage, is idle some of the time, e.g. a computer in a university teaching laboratory), it is possible to emulate the computing power offered by specialized dedicated hardware at a fraction of the cost (14). Recently, a number of authors have identified the suitability of distributed computing for phylogenetic analysis and shown how it is possible to harness the idle clock cycles of hundreds of standard desktop machines to perform phylogenetic analysis (15,16). In this article, we introduce MultiPhyl, which is a fully cross-platform high-throughput ML-based phylogeny analysis program that allows researchers to create a virtual phylogenetic supercomputer from a group of semi-idle desktop machines. The MultiPhyl webserver is aimed at researchers who wish to perform phylogenetic analysis of large numbers of alignments in short amounts of time but do not have access to dedicated high-performance computational resources.

MULTIPHYL

MultiPhyl is one of a number of applications that runs on our general-purpose distributed computing system (16,17). The overall design of the system is based on the client-server model. This model describes a system consisting of a single server computer and a number of client computers. Our system is divided into three separate pieces of software: server, client and remote interface (18). Apart from the server, the system is completely dynamic meaning that new donor machines (a donor machine is owned by someone that offers their machines spare clock cycles to MultiPhyl) can be added at any time and existing donor machines can fail arbitrarily with no adverse effect to the computations. We have deployed the distributed system across our university campus using the idle computing resources of several hundred desktop computers (see http://www.cs.nuim.ie/distributed/statistics.php for details). The overall flow of control in MultiPhyl can be broken up into three distinct stages: model selection, tree searching and bootstrapping. The user uploads a group of n nucleotide or amino acid alignments in either FASTA or PHYLIP file format. MultiPhyl makes extensive use of the Java-based Phylogenetic Analysis Library (PAL) v1.5 (19) to perform all likelihood calculations. Each of the analysis stages (model selection, tree searching and bootstrapping) operates completely asynchronously across different alignments, thus achieving maximum speedup and avoiding performance bottlenecks. One of the essential requirements for ML phylogenetic inference is a model of amino acid or nucleotide substitution. It has been shown that using incorrect or suboptimal substitution models can produce less accurate or incorrect phylogenies when the wrong model of evolution is assumed (20). Therefore, it may be useful to first compute the most suitable model before performing a treesearch. However, model selection is one area that has been overlooked as an essential part of the phylogeny construction process by many other parallel phylogenetic construction programs. We have recognized the importance of integrating model selection into all phylogenetic studies and therefore MultiPhyl allows the user to perform model selection on every alignment prior to all tree searches (20). The task of testing multiple substitution models against an alignment is very amenable to parallelization as each model can be optimized completely independently and the corresponding likelihoods can be collected and analysed at the server to determine the best model. In order to gain the maximum speedup for the model selection stage of the program, we implemented an adaptive parallel strategy where the server first recruits a single donor machine to construct the initial NJ tree to be used to optimize each model. The parallel granularity of a model selection stage is estimated dynamically by recording how many models are optimized by the first donor machine in m min (where the default value of m is 15 min). Although it may seem that the optimal parallel granularity would be to just issue a single model per donor machine, this could have a number of adverse effects on the distributed system such as overloading the non-dedicated network or overloading the server with many simultaneous connections. After the server receives the first set of o optimized models, it issues groups of o models to multiple donor machines to be optimized. As MultiPhyl is based on a network of heterogeneous processors with varying computational abilities, each donor machine has the option to return a partial set of p optimized models (where p is the number of models optimized by the particular machine within 15 min and p < o) with the unoptimized models being redistributed to other machines, thereby avoiding a bottleneck that might be caused by a few slow donor machines in the system. In order to address the trade-off between running time and accuracy when performing large-scale analysis, we have implemented two different tree search algorithms in MultiPhyl and given the user the option to select which algorithm they wish to use to analyse their dataset. The first tree- building algorithm initially constructs an NJ tree and then iteratively improves the trees by repeatedly performing all possible simultaneous NNI and local branch length optimization swaps that improve the likelihood until convergence (4). The model parameters are also optimized after each round of NNI swaps. Finally, all of the branch lengths are globally optimized to improve the final likelihood of the tree. The second tree search algorithm implemented in MultiPhyl allows the user to define a maximal depth of subtree pruning and regrafting (SPR) rearrangements to perform from each node of the tree. The SPR tree search algorithm begins by creating a starting tree by performing the NNI search algorithm outlined above and then iteratively visits each node of the tree and performs SPR rearrangements spanning increasing levels of the tree (beginning at 2 levels and continuing up to a user-defined maximum). In order to accommodate both long tree searches and the varying computational abilities of the available donor machines, if an individual tree search has not converged after 60 min on a particular machine, then the current state of the tree search is saved and returned to the server. This tree search is then re-issued to another donor machine to continue optimizing the tree. This also ensures that if a donor machine fails (e.g. crashes or is switched off), it is only possible to lose a maximum of approximately 60 min computing time for any tree search. One significant challenge in a distributed computing environment is the huge disparity of available memory on the donor machines. This is a particular issue in phylogenetics as the amount of memory consumed by ML-based phylogeny programs increases linearly with sequence length and number of taxa. MultiPhyl implements a dynamic memory scheme where the minimum memory requirements of each task is first set to some initial value (default is 60 Mb). When a donor machine requests a work unit, the donor machine can only be issued a particular task (model optimization or tree search) that has a memory requirement less than the amount of memory available to the Java Virtual Machine (JVM) on the donor machine. If a donor machine reports that the JVM ran out of memory while attempting to perform a particular task, the server dynamically increases the minimum memory requirements of that individual task to a level that is suitable for the task. If no machine with sufficient memory can be detected after q attempts (default value for q is 5), then the problem is removed from the system with an appropriate entry in the log file returned to the user. This dynamic scheme ensures that each phylogenetic computation can gain access to the maximum amount of computational resources available to MultiPhyl as the user is not required to decide a priori what types of machines are capable of processing their dataset.

WEBSERVER

The MultiPhyl webserver (http://www.cs.nuim.ie/distributed/multiphyl.php) allows any researcher to upload multiple amino acid or nucleotide alignments (in FASTA or PHYLIP format) to be analysed on our network of computers. A user can upload either a single alignment file or a zip file containing up to 1000 alignments. The user must provide a valid email address to which the results are sent when the analysis is finished. Each alignment is first checked for formatting errors and an email is sent to notify the user if any errors are found. The webserver is set to perform model selection by default and the user chooses which tree search algorithm to use and whether or not to perform bootstrapping. For each alignment, a comprehensive report file is produced with information on the alignment (number of sites, gap content, constant sites), search parameters, model selection ranking information, sequence-composition chi-squared test, final likelihood, human-readable tree, phylip format tree and a bipartition table constructed from the bootstrap replicates. A user is presented with a web submission form when they log onto the MultiPhyl homepage. To avail of the service, the user first selects their alignment file (or a zip file containing their alignments). The user then uses the check-boxes to specify which tree search algorithm (NNI or SPR) to use for their analysis. Next, the user can select whether to perform bootstrapping on their dataset and enter how many bootstrap replicates to carry out in the text box. All users must enter their name, institution and email address in the text-boxes provided. Finally, the user presses the execute button to start the analysis on the distributed system. Any errors found in the submission information are displayed on the screen immediately.

VALIDATION

In order to benchmark the tree search algorithms implemented in MultiPhyl, we ran MultiPhyl on a single processor and compared it to a number of other prominent tree search programs, using a number of previously published well-known real alignments. We obtained the three datasets used to benchmark parallel fastDNAml (11) corresponding to 50 (1858 bp), 101 (1858 bp) and 150 (1269 bp) taxa. We also used the 218RDPII (4128 bp) dataset used to benchmark Phyml (4) and the 150ARB (3188 bp), 193V (465 bp), 200ARB (3270 bp) and 250ARB (3638 bp) datasets used to benchmark RAxML (5). The performance of six different phylogeny construction programs across three different architectures was recorded. As MultiPhyl optimizes the base frequencies of the model, Phyml was executed using the ‘F’ option to also optimize the base frequencies. The final likelihood values and running times of each program using the GTR (21) nucleotide substitution model are given in Table 1. In all cases, the final likelihood values of the trees were calculated using Phyml using the branch and model optimisation option to allow for a fair comparison of likelihood values.
Table 1.

Comparison of final log likelihood values and runtimes (seconds in brackets) of MultiPhyl v1.0.4, RAxML-VI, Phyml v2.4.4, DPRml and IQPNNI v3.0 for a number of previously published datasets

DatasetMultiPhylPhymlDPRmlMultiPhylIQPNNIRAxML-VI
(NNI)v2.4.4(SPR)v3.0
50SC−43664−43691−43735−43651−43630−43630
(78)(66)(5994)(6777)(443)(69)
101SC−73807−73818−73754−73790−73648−73610
(163)(145)(82935)(13674)(1703)(602)
150SC−44178−44138−44082−44172−44061−44024
(162)(113)(141211)(13931)(2513)(342)
150ARB−76472−76489−76571−76472−76473−76473
(482)(323)(309434)(17441)(4117)(814)
193V−64799−64532n/a−64802−64413−64407
(235)(263)(13411)(2511)(905)
200ARB−103741−103789n/a−103740−103784−103696
(1003)(395)(17147)(6470)(1487)
218RDPII−155967−155876n/a−155934−155607−155603
(1049)(535)(17233)(11508)(2937)
250ARB−130530−130488n/a−130518−130271−130287
(1262)(619)(17570)(15226)(3575)

SPR rearrangements were limited to a maximum of 5 branches of the tree in MulitPhyl (SPR). All tests were carried out on an AMD Opteron 2.4 GHz with 1 GB RAM. Phyml was used to calculate the final likelihood values produced by each program. DPRml was not tested on some of the larger datasets due to its excessive runtimes.

Comparison of final log likelihood values and runtimes (seconds in brackets) of MultiPhyl v1.0.4, RAxML-VI, Phyml v2.4.4, DPRml and IQPNNI v3.0 for a number of previously published datasets SPR rearrangements were limited to a maximum of 5 branches of the tree in MulitPhyl (SPR). All tests were carried out on an AMD Opteron 2.4 GHz with 1 GB RAM. Phyml was used to calculate the final likelihood values produced by each program. DPRml was not tested on some of the larger datasets due to its excessive runtimes. In terms of final likelihood values, the performance of MultiPhyl (NNI) and Phyml is quite similar. Phyml achieves higher final likelihood values in four out of the eight datasets (150SC, 193V, 218RDPII and 250ARB) with MultiPhyl (NNI) achieving higher likelihoods in the other four datasets (50SC, 101SC, 150ARB and 200ARB). As both programs implement very similar tree search algorithms, the differences in performance can be attributed to slight implementation differences of the search algorithm in the two programs. For the smaller datasets (50SC, 101SC, 150SC, 150ARB and 193V), the runtimes of the two programs are quite comparable with MultiPhyl (NNI) producing runtimes up to 1.5 times slower than Phyml. However, the runtimes from the three largest datasets (200ARB, 218RDPII, 250ARB) show more significant differences between the two programs. The performance of the more extensive tree search programs [MultiPhyl (SPR), RAxML and IQPNNI] shows a number of patterns. RAxML clearly outperforms the two other programs in terms of final likelihood values. In five out of the eight datasets (101SC, 150SC, 193V, 200ARB and 218RDPII), RAxML produced the highest likelihoods of any of the programs tested. MultiPhyl (SPR) produced the highest likelihood in one dataset (150ARB) with IQPNNI also producing the highest likelihood for the 250ARB dataset. The scale of the algorithmic improvements in recent years is apparent by examining the performance of DPRml compared to all of the other programs. DPRml is based on a traditional tree search algorithm that has been in use for many years (8,16). However, in three of the four datasets that DPRml was executed on, it produced the lowest (worst) likelihood values of all of the programs.

CONCLUSION

As the number of fully completed genomes increases, we are becoming greatly interested in performing whole-genome phylogenetic analyses by examining the evolutionary history of large numbers of gene families. Despite the recent improvements in ML-based tree search programs, it can still take a long time to perform a full ML phylogenetic analysis of multiple genes on a single computer. In order to address these computational challenges, we have recently developed the first high-throughput implementation of a distributed phylogenetics platform, MultiPhyl, capable of using the idle computational resources of many heterogeneous non-dedicated machines to form a phylogenetics supercomputer. MultiPhyl allows users to upload multiple amino acid or nucleotide alignments and perform the tasks of ML model selection, tree searching, and bootstrapping. We have shown that the tree search algorithms implemented in MultiPhyl are quite comparable to the fastest serial phylogenetic programs. In future versions of MultiPhyl, we intend to integrate some of the other computationally intensive processes that are performed when carrying out a typical phylogenomic analysis such as multiple sequence alignment and simultaneous estimation of alignment and tree parameters. We also intend to incorporate more complex models of sequence evolution such as heterogeneous mixture models of nucleotide and amino acid evolution. MultiPhyl is currently installed on several hundred desktop computers in our university campus and we encourage other institutions to also install MultiPhyl. Perhaps the true significance of the MultiPhyl webserver is that it allows researchers who otherwise do not have access to high performance computational hardware (e.g. in developing countries) the opportunity to perform large phylogenomic studies.
  16 in total

1.  PAL: an object-oriented programming library for molecular evolution and phylogenetics.

Authors:  A Drummond; K Strimmer
Journal:  Bioinformatics       Date:  2001-07       Impact factor: 6.937

2.  TREE-PUZZLE: maximum likelihood phylogenetic analysis using quartets and parallel computing.

Authors:  Heiko A Schmidt; Korbinian Strimmer; Martin Vingron; Arndt von Haeseler
Journal:  Bioinformatics       Date:  2002-03       Impact factor: 6.937

3.  A simple, fast, and accurate algorithm to estimate large phylogenies by maximum likelihood.

Authors:  Stéphane Guindon; Olivier Gascuel
Journal:  Syst Biol       Date:  2003-10       Impact factor: 15.683

4.  Genetic algorithms and parallel processing in maximum-likelihood phylogeny inference.

Authors:  Matthew J Brauer; Mark T Holder; Laurie A Dries; Derrick J Zwickl; Paul O Lewis; David M Hillis
Journal:  Mol Biol Evol       Date:  2002-10       Impact factor: 16.240

5.  IQPNNI: moving fast through tree space and stopping in time.

Authors:  Le Sy Vinh; Arndt Von Haeseler
Journal:  Mol Biol Evol       Date:  2004-05-26       Impact factor: 16.240

6.  DSEARCH: sensitive database searching using distributed computing.

Authors:  T M Keane; T J Naughton
Journal:  Bioinformatics       Date:  2004-11-25       Impact factor: 6.937

7.  RAxML-III: a fast program for maximum likelihood-based inference of large phylogenetic trees.

Authors:  A Stamatakis; T Ludwig; H Meier
Journal:  Bioinformatics       Date:  2004-12-17       Impact factor: 6.937

8.  DPRml: distributed phylogeny reconstruction by maximum likelihood.

Authors:  T M Keane; T J Naughton; S A A Travers; J O McInerney; G P McCormack
Journal:  Bioinformatics       Date:  2004-10-28       Impact factor: 6.937

9.  The general stochastic model of nucleotide substitution.

Authors:  F Rodríguez; J L Oliver; A Marín; J R Medina
Journal:  J Theor Biol       Date:  1990-02-22       Impact factor: 2.691

10.  fastDNAmL: a tool for construction of phylogenetic trees of DNA sequences using maximum likelihood.

Authors:  G J Olsen; H Matsuda; R Hagstrom; R Overbeek
Journal:  Comput Appl Biosci       Date:  1994-02
View more
  23 in total

1.  Bacterial communities of Bartonella-positive fleas: diversity and community assembly patterns.

Authors:  Ryan T Jones; Katherine F McCormick; Andrew P Martin
Journal:  Appl Environ Microbiol       Date:  2008-01-18       Impact factor: 4.792

2.  Gene and genome trees conflict at many levels.

Authors:  Leanne S Haggerty; Fergal J Martin; David A Fitzpatrick; James O McInerney
Journal:  Philos Trans R Soc Lond B Biol Sci       Date:  2009-08-12       Impact factor: 6.237

3.  Phylogenetic and gene expression analysis of cyanobacteria and diatoms in the twilight waters of the temperate northeast Pacific Ocean.

Authors:  Weimin Gao; Xu Shi; Jieying Wu; Yuguang Jin; Weiwen Zhang; Deirdre R Meldrum
Journal:  Microb Ecol       Date:  2011-06-23       Impact factor: 4.552

4.  Soil rotifer communities are extremely diverse globally but spatially autocorrelated locally.

Authors:  Michael S Robeson; Andrew J King; Kristen R Freeman; C William Birky; Andrew P Martin; Steven K Schmidt
Journal:  Proc Natl Acad Sci U S A       Date:  2011-02-22       Impact factor: 11.205

5.  Clarifying the systematics of an enigmatic avian lineage: what is a bombycillid?

Authors:  Garth M Spellman; Alice Cibois; Robert G Moyle; Kevin Winker; F Keith Barker
Journal:  Mol Phylogenet Evol       Date:  2008-09-18       Impact factor: 4.286

6.  Comparative analyses of coding and noncoding DNA regions indicate that Acropora (Anthozoa: Scleractina) possesses a similar evolutionary tempo of nuclear vs. mitochondrial genomes as in plants.

Authors:  I-Ping Chen; Chung-Yu Tang; Chih-Yung Chiou; Jia-Ho Hsu; Nuwei Vivian Wei; Carden C Wallace; Paul Muir; Henry Wu; Chaolun Allen Chen
Journal:  Mar Biotechnol (NY)       Date:  2008-08-01       Impact factor: 3.619

7.  Search for a 'Tree of Life' in the thicket of the phylogenetic forest.

Authors:  Pere Puigbò; Yuri I Wolf; Eugene V Koonin
Journal:  J Biol       Date:  2009-07-13

8.  PALM: a paralleled and integrated framework for phylogenetic inference with automatic likelihood model selectors.

Authors:  Shu-Hwa Chen; Sheng-Yao Su; Chen-Zen Lo; Kuei-Hsien Chen; Teng-Jay Huang; Bo-Han Kuo; Chung-Yen Lin
Journal:  PLoS One       Date:  2009-12-07       Impact factor: 3.240

9.  Comparative genomics and proteomics of Helicobacter mustelae, an ulcerogenic and carcinogenic gastric pathogen.

Authors:  Paul W O'Toole; William J Snelling; Carlos Canchaya; Brian M Forde; Kim R Hardie; Christine Josenhans; Robert Lj Graham; Geoff McMullan; Julian Parkhill; Eugenio Belda; Stephen D Bentley
Journal:  BMC Genomics       Date:  2010-03-10       Impact factor: 3.969

10.  Environmental DNA sequencing primers for eutardigrades and bdelloid rotifers.

Authors:  Michael S Robeson; Elizabeth K Costello; Kristen R Freeman; Jeremy Whiting; Byron Adams; Andrew P Martin; Steve K Schmidt
Journal:  BMC Ecol       Date:  2009-12-11       Impact factor: 2.964

View more

北京卡尤迪生物科技股份有限公司 © 2022-2023.