Literature DB >> 19200389

Optimized ancestral state reconstruction using Sankoff parsimony.

José C Clemente1, Kazuho Ikeo, Gabriel Valiente, Takashi Gojobori.   

Abstract

BACKGROUND: Parsimony methods are widely used in molecular evolution to estimate the most plausible phylogeny for a set of characters. Sankoff parsimony determines the minimum number of changes required in a given phylogeny when a cost is associated to transitions between character states. Although optimizations exist to reduce the computations in the number of taxa, the original algorithm takes time O(n(2)) in the number of states, making it impractical for large values of n.
RESULTS: In this study we introduce an optimization of Sankoff parsimony for the reconstruction of ancestral states when ultrametric or additive cost matrices are used. We analyzed its performance for randomly generated matrices, Jukes-Cantor and Kimura's two-parameter models of DNA evolution, and in the reconstruction of elongation factor-1alpha and ancestral metabolic states of a group of eukaryotes, showing that in all cases the execution time is significantly less than with the original implementation.
CONCLUSION: The algorithms here presented provide a fast computation of Sankoff parsimony for a given phylogeny. Problems where the number of states is large, such as reconstruction of ancestral metabolism, are particularly adequate for this optimization. Since we are reducing the computations required to calculate the parsimony cost of a single tree, our method can be combined with optimizations in the number of taxa that aim at finding the most parsimonious tree.

Entities:  

Mesh:

Year:  2009        PMID: 19200389      PMCID: PMC2677398          DOI: 10.1186/1471-2105-10-51

Source DB:  PubMed          Journal:  BMC Bioinformatics        ISSN: 1471-2105            Impact factor:   3.169


Background

Reconstruction of ancestral states aims at discovering the conformation of past proteins, genes or whole genomes from extant species data. This approach has been successfully utilized to reconstruct ancestral steroid receptors [1], mitochondrial DNA [2], antiviral RNase [3], or fluorescent proteins [4]. In a similar fashion, several studies have hypothesized on the evolution of hormone-receptor complexes [5], composition of ancestral genomes [6], thermostability of extinct proteins [7], properties of ancestral promoters [8], expansion of human segmental duplications [9], or ancestral codon usage [10]. Parsimony, maximum likelihood or bayesian approaches are commonly utilized to infer ancestral states. Parsimony was originally introduced by Edwards and Cavalli-Sforza [11], but its application to reconstruct ancestral characters was first described by Fitch [12]. Sankoff later proposed a modification to take into account different rates of change between states [13,14]. The popularity of likelihood methods in phylogenetics is mostly due to the optimization proposed by Felsenstein [15]. Yang described its application to infer ancestral sequences [16]. Bayesian approaches have also gained favor thanks to their combined used with Markov Chain Monte Carlo (MCMC) methods. Huelsenbeck and Bollback have proposed an algorithm for bayesian ancestral reconstruction [17]. Each of these approaches has advantages and weaknesses, and it is passionately debated which of them is more accurate. Parsimony is known for being biased when the rate of change per branch is high and tends to reconstruct the wrong tree due to long branch attraction [18], while likelihood does not suffer from these problems [19,20]. On the other hand, when the characters under study evolve at non-uniform rates over time, maximum likelihood and bayesian methods have been shown to be inconsistent and perform worse than parsimomy [21]. Regardless of the preferred method, the computational complexity of ancestral reconstruction algorithms is high and optimizations are required to work with large number of sequences. In the particular case of parsimony, an algorithm to reduce the the number of computations has been previously proposed [22]. Goloboff has introduced diverse optimization strategies [23,24], and Ronquist [25] has further improved some of the previous works. All these optimizations aim at reducing the calculations in the number of taxa when looking for the most parsimonious tree, that is, when looking for the tree in the search space that minimizes the number of changes. Nevertheless, no correct optimization in the number of states of the weighted parsimony algorithm proposed by Sankoff is known. Wheeler and Nixon proposed an optimization [26] later proved incorrect by Swofford and Siddall [27]. In this paper, we present a two-fold optimization of Sankoff parsimony. Our algorithm reduces the number of operations in the number of states needed to calculate the parsimony cost of a given phylogeny, as well as the time required to reconstruct the ancestral states. This optimization can be utilized when the cost matrix for transitions between character states is either ultrametric or additive, and it reduces the original O(n2) operations required with n states per node and character. While the optimization is moderate when the number of states is small, as in the case of nucleotides or amino acids, the optimization is more effective the larger the number of states, with an 8-fold reduction in running time in the case of metabolic enzymes. The algorithms here presented were originally developed precisely to obtain fast reconstructions of ancestral metabolism, motivated by the recent interest in obtaining phylogenetic signal from metabolic data [28-33]. In the rest of this paper we will review the original Sankoff algorithm, describe our optimization, and analyze its performance for both randomly generated data and biologically well-known cost matrices for nucleotides, amino acids, and metabolic enzymes.

Methods

Original Sankoff Parsimony

Sankoff parsimony [13,14] counts the number of evolutionary changes for a specific site in a phylogenetic tree, assuming a set of n character states i = 1, ..., n (for instance, 4 nucleotides or 20 amino acids) for which a cost matrix C = (c) of changes between states is given. Each node p of the phylogeny has assigned a cost vector, S(, which contains the minimal evolutionary cost for each of the character states. If node p is assigned state i, the quantity reflects the minimum cost of events (state changes) from p to the root of the tree. The original Sankoff algorithm calculates the cost vectors at each node moving from the leaves upwards to the root. Initially, the S(vectors at the inner nodes are unknown and those at the leaves are initialized with cost 0 for the observed character state and ∞ for the rest. For instance, if adenine is observed in a site (character) for a certain species, the cost vector would be = 0 and . The cost vector of a node p with two children q and r is: Equation (1) states that the cost of being in character state i for node p is the cost of moving from character state i to j in child q (c) plus the cost of having reached state j at node q from the leaves (). Character j is selected to minimize this sum, with the same procedure being applied to character k in child r. Algorithm 1 presents the original implementation of Sankoff parsimony to calculate the cost vector of all nodes in a tree for a single character. Algorithm 1 (Original Sankoff algorithm: Up phase). A procedure call Sankoff_Up(T, C, S) calculates the cost vector S(of all nodes p of the phylogeny T, given a cost matrix C = (c). Sankoff_Up(T, C, S) nodes p of T in postorder p is a leaf i in 1, ..., n state i observed at leaf p ← 0 ← ∞ {q, r} ← children of p i in 1, ..., n ← cost(q, i) + cost(r, i) cost(x, i) min ← ∞ j in 1, ..., n c+ < min min ← c+ min Figure 1 presents an example for a single site in a nucleotide sequence, where cytosine, guanine, and thymine are observed at the leaves. The minimum number of changes under Sankoff parsimony is 4, as annotated in the root of the tree. As it can be observed, Algorithm 1 takes O(n2) time in the number of character states per node, since the function cost is O(n) and it is called n times. Once the cost vectors have been calculated for each inner node, we can use this information to reconstruct the ancestral states. The algorithm proceeds now top-down, and the root of the phylogeny gets assigned those states with minimum cost in the vector S(. For any inner node p, and given that ancestral state i was reconstructed at its parent, the state j to be chosen is that for which c+ is minimized. Notice that for inner nodes this state needs not correspond with that for which is minimum. Algorithm 2 describes an implementation as presented in [[34], §6].
Figure 1

Original Sankoff parsimony: up phase. (A) A matrix defining transition costs between states. (B) A sample phylogenetic tree with cost vectors calculated for all nodes using Algorithm 1.

Original Sankoff parsimony: up phase. (A) A matrix defining transition costs between states. (B) A sample phylogenetic tree with cost vectors calculated for all nodes using Algorithm 1. Algorithm 2 (Original Sankoff algorithm: Down phase). A procedure call Sankoff_Down(x, T, C, S, S) calculates the ancestral states of all nodes p of the phylogeny T, given the root x of T, a cost matrix C = (c) of transition costs between states, and the cost vectors S(for all nodes p of T as calculated by Sankoff_Up(T, C, S). Sankoff_Down(x, T, C, S, S) j in child y of x Sankoff_Down(j, y, T, C, S, S) Sankoff_Down(i, x, T, C, S, S) min_states(i, x, C, S, S) j in child y of x Sankoff_Down(j, y, T, C, S, S) min_states(i, x, C, S, S) min ← ∞ j in 1, ..., n x = root(T) trans_cost ← trans_cost ← c+ trans_cost < min min ← trans_cost ← {j} trans_cost = min ← ∪ {j} Figure 2 presents an example of the top-down phase of Sankoff parsimony. Notice that the states chosen as ancestral do not necesarily correspond to those with minimum values in the cost vectors. The node with cost vector S = (4, 3, 3, 4) has thymine as one of the two possible parsimonious ancestral states, which has larger cost than guanine. For simplicity, ties are not solved in the algorithms presented in this paper and thus inner nodes can have more than one ancestral state. If we were to differentiate among the different parsimonious reconstructions, there would be three scenarios for this example as indicated by the red lines: cytosine both at the root and the inner node, thymine both at the root and the inner node, or thymine at the root and cytosine at the inner node. Cytosine in the root and thymine in the inner node is not parsimonious. The reconstruction of ancestral states as described in Algorithm 2 takes O(n) time per node.
Figure 2

Original Sankoff parsimony: down phase. Ancestral states for the phylogeny, cost matrix and observed states of Figure 1, as obtained by Algorithm 2. Without solving ties, ancestral nodes are written next to each inner node. Red lines indicate the most parsimonious reconstructions after solving ties.

Original Sankoff parsimony: down phase. Ancestral states for the phylogeny, cost matrix and observed states of Figure 1, as obtained by Algorithm 2. Without solving ties, ancestral nodes are written next to each inner node. Red lines indicate the most parsimonious reconstructions after solving ties.

Optimized Sankoff Parsimony

Our optimization is based on the observation that not all transition costs between character states need to be computed if the cost matrix is ultrametric or additive. Definition 1. A cost matrix is ultrametric if for every three indices i, j, k, one of the three following inequalities holds (three point condition): • c⩽ c= c • c⩽ c= c • c⩽ c= c Definition 2. A cost matrix is additive if for every four indices i, j, k, ℓ, one of the three following inequalities holds (four point condition): • c+ c⩽ c+ c= c+ c • c+ c⩽ c+ c= c+ c • c+ c⩽ c+ c= c+ c Notice that ultrametric matrices are also additive, since they satisfy the four point condition [35]. Consider a simple example where the cost matrix C has c= 0 and c= k for all i ≠ j. When calculating the cost in Equation (1), we can substitute min(c+ ) for min(, k + min), and similarly for the other child r of p. In the more general case of ultrametric or additive cost matrices, we can efficiently represent them with a unique rooted weighted cost tree Tusing UPGMA [36] or neighbor-joining [37] respectively. The length of the path between any two leaves i, j in Tcorresponds to the cost c. For ultrametric matrices, consider any set of leaves L = {a, b, ...} in the tree that have the same last common ancestor, lca(L). By definition, lca(L) is equidistant to any leaf in L, and all leaves in L are at the same distance d to each other (which is double the distance from the leaf to lca(L)). For any two leaves a, b in L we can then simplify the expression min(c+ ) as d + min . Therefore, given the cost tree Tobtained by UPGMA from the ultrametric matrix, for each state i we only need to compute the minimum costs at the last common ancestor of that state and any other, that is, the inner nodes in the path from i to the root of T. With additive matrices, since the distance from an inner node to its descendant leaves can vary, we need to take into consideration the specific length of each branch when calculating the minimum. Therefore, in our algorithm each cost vector Sis replaced by a cost tree , whose inner nodes will contain the value that minimizes. c+ for all descendant leaves L. Algorithm 3 presents the optimized version of Sankoff parsimony for the calculations from the leaves to the root of the phylogeny. Algorithm 3 (Optimized Sankoff algorithm: Up phase). A procedure call Opt_Sankoff_Up(T, T, S) calculates the cost vector S(of all nodes p of the phylogeny T, given a cost tree Trepresenting an ultrametric or additive cost matrix C = (c). Opt_Sankoff_Up(T, T, S) nodes p of T in postorder p is a leaf i in 1, ..., n state i observed at leaf p ← 0 ← ∞ update(p, i, , T) {q, r} ← children of p i in 1, ..., n ← cost(q, i) + cost(r, i) update(p, i, , T) update(x, i, v, T) n ← leaf of corresponding to state i cost(n) ← v min_tags(n) ← {i} cost ← branch length between n and its parent in n ← parent of n in v + cost cost(n) ← v + cost min_tags(n) ← {i} v + cost = cost(n) min_tags(n) ← min_tags(n) ∪ {i} n ≠ root of cost ← cost + branch length between n and its parent in n = root of cost(x, i) n ← leaf of corresponding to state i min ← cost(n) cost ← branch length between n and its parent in n ← parent of n in cost + cost(n) < min min ← cost + cost(n) n ≠ root of cost ← cost + branch length between n and its parent in n = root of min Algorithm 3 utilizes a cost tree with the same topology as Tfor each node p, and where each node is annotated with the minimum value corresponding to c+ , as implemented in the function cost. The function update saves each of these cost trees by moving from the leaves to the root and storing minimum values in the nodes (cost(n)), as well as the leaf responsible for the value stored in the node (min_tags(n)), which will be later used to optimize the reconstruction of ancestral states. The complexity of Algorithm 3 depends on the internal path length of T. The worst case would be a degenerate tree with linear structure, in which case the complexity for n states is (n2 - n)/2 per node and character [[38], §2.3.4.5]. Notice that in practice this will be a rare case, and most cost trees have a more favourable topology to our optimization (as will be shown in the Results section), while the original algorithm takes O(n2) time no matter the cost matrix used. Figure 3 presents a detailed example of the Algorithm 3. The cost of a transition between states i and j, c, is the sum of branch lengths between the corresponding leaves in the cost tree. Since the matrix in this example is additive, neighbor-joining guarantees a unique tree. The minimum cost for state a can be calculated as = cost(q, a) + cost(r, a), the sum of minimum costs from the children nodes q and r. For node q this cost will be the minimum among ∞ (cost at leaf a in ), 8 (cost 2 at node x plus branch length 6), and 16 (cost 6 at node w plus total branch length 6 + 4), therefore cost(q, a) = 8. For node r, clearly cost(r, a) = 0, and therefore = 8. At this point, we update the path from leaf a to the root of : node x is set to 8 + 6 = 14, and node w is set to 8 + 6 + 4 = 18. The cost for state b is calculated following the same procedure, resulting in = 8. When updating , the cost at node x is reduced from 14 to 10 (8 at leaf b plus branch length 2), and at node w from 18 to 14. The remaining state costs and inner nodes of the cost tree are calculated in a similar way.
Figure 3

Optimized Sankoff parsimony: up phase. (A) Cost matrix between six states a, ..., f and their associated cost tree as calculated by the neighbor-joining algorithm. (B) A simple phylogeny with three nodes (dashed boxes), their cost vectors S and cost trees T. Cost vectors S(and S(, and cost trees and are already calculated. (C) Step-by-step reconstruction of S(and for node p following Algorithm 3.

Optimized Sankoff parsimony: up phase. (A) Cost matrix between six states a, ..., f and their associated cost tree as calculated by the neighbor-joining algorithm. (B) A simple phylogeny with three nodes (dashed boxes), their cost vectors S and cost trees T. Cost vectors S(and S(, and cost trees and are already calculated. (C) Step-by-step reconstruction of S(and for node p following Algorithm 3. Algorithm 4 presents the optimized version of the reconstruction of ancestral states using Sankoff parsimony. In its original implementation, for each node we had to consider all posible states looking for the one that minimized c+ . Since we have already saved the minimum transition costs and the leaves responsible for them as shown in Algorithm 3, we can use this information to further speed up computation. The ancestral states for the root r of the phylogeny T are obtained as in the original algorithm. For any inner node x of T, and given that its parent had ancestral state k reconstructed, we only need to move from leaf k to the root of and keep the state min_tags(n) that has the minimum value cost(n). Algorithm 4 (Optimized Sankoff algorithm: Down phase). A procedure call Opt_Sankoff_Down(x, T, T, S) calculates the ancestral states of all nodes p of the phylogeny T, given the root x of T and the cost tree for each node p of T as calculated by Opt_Sankoff_Up(T, T, S). Sankoff_Down(x, T, T, S) j in child y of x Opt_Sankoff_Down(j, y, T, T, S) Opt_Sankoff_Down(i, x, T, T, S) n ← leaf of corresponding to state i min ← cost(n) cost ← branch length between n and its parent in n ← parent of n in cost + cost(n) < min min ← cost + cost(n) ← {min_tags(n)} cost + cost(n) = min ← ∪ {min_tags(n)} n ≠ root of cost ← cost + branch length between n and its parent in n = root of j in S child y of x Opt_Sankoff_Down(j, y, T, T, S) Figure 4 presents an example of Algorithm 4. Assuming the parent node of p had state ancestral state e, we move from that leaf to the root of while comparing minimum values: 34 at e, 34 (28 + 6) if we move from state f, 35 (27 + 6 + 2) if we move from d or 25 (14 + 6 + 2 + 1) when moving from b. The ancestral state reconstructed in this node is therefore b. If the ancestral state at the parent had been a instead, node p would have state a as the most parsimonious. Notice that in this case the value in the root of is not necessary, since the cost of moving from b to a is in fact 10 (minimum annotated at the parent of a) plus 6 (the length of the branch from a to its parent).
Figure 4

Optimized Sankoff parsimony: down phase. (A) Calculation of the ancestral state for node p following Algorithm 4, given that the parent node of p had ancestral state e. (B) Calculation of the ancestral state for node p following Algorithm 4, given that the parent node of p had ancestral state a.

Optimized Sankoff parsimony: down phase. (A) Calculation of the ancestral state for node p following Algorithm 4, given that the parent node of p had ancestral state e. (B) Calculation of the ancestral state for node p following Algorithm 4, given that the parent node of p had ancestral state a. Algorithm 4 reduces the number of operations compared to the original implementation, since we do not have to review all states at each node but only traverse from a leaf to the root of the cost tree. The original implementation takes O(n) time, while the complexity of our optimization is again a function of the internal path length of T, which in general will be less than n.

Results and Discussion

We performed a series of simulations involving a single random site from 10 to 100 species in a random phylogeny, and 4 to 800 character states. Sankoff parsimony costs were calculated using randomly generated additive matrices and their associated cost trees. All experiments were performed in a Mac Pro with 2 × 2.66 Ghz Dual-Core Intel Xeon processor, 7 GB of memory, and Mac OS X 10.4.11. Figure 5 presents running times versus the number of states, with the running time shown for all the generated phylogenies; that is, for each point corresponding to a particular number of states in the horizontal axis, there are 91 measurementes (10 to 100 species) of execution times for both the original and optimized methods. As it can be observed, times for the optimized algorithm grow linearly in the number of states, while the original implementation has a quadratic growth. Results for ultrametric matrices (not shown) were similar to those presented in Figure 5.
Figure 5

Execution times for simulated cost matrices. Execution time versus number of states (4 to 800) with random cost matrices and phylogenies (10 to 100 species), with the original and optimized Sankoff parsimony algorithms.

Execution times for simulated cost matrices. Execution time versus number of states (4 to 800) with random cost matrices and phylogenies (10 to 100 species), with the original and optimized Sankoff parsimony algorithms. Figures 6 and 7 show results for a single randomly generated nucleotide and phylogeny (10 to 100 species) using cost matrices based on the DNA evolution models proposed by Jukes and Cantor [39] and Kimura [40], both of which are ultrametric. Even though there are only 4 character states, the optimized algorithm outperforms the original implementation. Notice that results for these two figures and the previous one are for a single site; calculations for full sequences would further increase the difference between the original and the optimized algorithms.
Figure 6

Execution times for Jukes-Cantor model. Execution times for one nucleotide site in 91 phylogenies (10 to 100 species) with the original and optimized implementations of Sankoff parsimony, using a cost matrix based on the Jukes-Cantor model.

Figure 7

Execution times for Kimura two-parameter model. Execution times for one nucleotide site in 91 phylogenies (10 to 100 species) with the original and optimized implementations of Sankoff parsimony, using a cost matrix based on Kimura's two-parameter model.

Execution times for Jukes-Cantor model. Execution times for one nucleotide site in 91 phylogenies (10 to 100 species) with the original and optimized implementations of Sankoff parsimony, using a cost matrix based on the Jukes-Cantor model. Execution times for Kimura two-parameter model. Execution times for one nucleotide site in 91 phylogenies (10 to 100 species) with the original and optimized implementations of Sankoff parsimony, using a cost matrix based on Kimura's two-parameter model. To provide a better idea of the performance of our optimization in a more realistic setup, we reconstructed the ancestral amino acid chain of elongation factor-1α from the sequence of 42 species (see [41] for details). The cost matrices were obtained from works addressing the problem of how to obtain a reduced amino acid alphabet that can still produce a correct folding [42-46]. Figure 8 presents the corresponding cost trees. As it can be seen in Figure 9, in this particular example the optimization is approximately 27% faster than the original algorithm.
Figure 8

Amino acid cost trees. Cost trees corresponding to five different amino acid cost matrices [42-46].

Figure 9

Execution times for ancestral elongation factor-1. Execution times for the reconstruction of elongation factor-1α (EF-1α) in 42 species, with the cost trees presented in Figure 8. EF-1α sequences obtained from [41].

Amino acid cost trees. Cost trees corresponding to five different amino acid cost matrices [42-46]. Execution times for ancestral elongation factor-1. Execution times for the reconstruction of elongation factor-1α (EF-1α) in 42 species, with the cost trees presented in Figure 8. EF-1α sequences obtained from [41]. Figure 10 presents results for the reconstruction of the ancestral metabolism of twelve eukaryotes (adapted from [47], with Xenopus laevis, Candida albicans, Cyanidioschyzon merolae, Danio rerio, and Oryza sativa japonica added). Hierarchical and information content similarity measures [48] were used to determine the transition costs between states (in this case, enzymes identified by their EC number [49]). The characters to reconstruct will be the enzymatic reactions annotated to the species in KEGG [50], with enzymes representing the possible states. Whenever an enzymatic reaction is not annotated to a species, its state will be chosen as the subset of annotated enzymes that are closer to it, at the corresponding cost. This is in order to avoid having cost vectors in the leaves with all their entries having cost ∞. For instance, under hierarchical similarity, if the enzyme alcohol dehydrogenase (1.1.1.1) is not annotated to a species, we would look first for any annotated enzyme in the group of oxidoreductases acting on the CH-OH group of donors with NAD+ or NADP+ as acceptor (1.1.1.-), which are the closest to 1.1.1.1 at cost 0.25. If no such enzyme is annotated, we would look for those in the group 1.1.-.- (cost 0.5 to 1.1.1.1), and so on until a group with annotated enzymes for the species is found.
Figure 10

Execution times for ancestral eukaryotic metabolic reconstruction. Execution times for the reconstruction of ancestral metabolism in a group of twelve eukaryotes, those described in [47] plus Xenopus laevis, Candida albicans, Cyanidioschyzon merolae, Danio rerio, and Oryza sativa japonica.

Execution times for ancestral eukaryotic metabolic reconstruction. Execution times for the reconstruction of ancestral metabolism in a group of twelve eukaryotes, those described in [47] plus Xenopus laevis, Candida albicans, Cyanidioschyzon merolae, Danio rerio, and Oryza sativa japonica. Alternatively, we could have codified the presence or absence of enzymes in each species, and then perform a reconstruction using maximum parsimony. While this is a commonly used approach, the use of measures of enzymatic similarity has shown a better performance than simple patterns of presence/absence of enzymes in the phylogenetic analysis of metabolism [31], and therefore the election of large state sets is to be preferred. For this particular example, the number of states is composed of 925 reactions annotated to at least one of the twelve species under study, and the number of inner nodes in the cost tree is comparatively small, making our optimization 8-fold faster than the original implementation.

Conclusion

The optimization here presented provides a computation of Sankoff parsimony faster than the original algorithm when the cost matrix is ultrametric or additive, even for a small number of character states. Since our approach reduces the execution time needed to calculate the parsimony cost of a single tree, it could be easily combined with optimizations looking for the most parsimonous tree. Our algorithm takes comparatively less time to execute when the number of states is large, and therefore problems such as ancestral metabolism reconstruction could be especially well-suited for this optimization.

Authors' contributions

JC and GV conceived the method and prepared the manuscript. JC implemented the algorithms and performed the experiments. All authors contributed to the discussion and have approved the final manuscript.
  32 in total

1.  KEGG: kyoto encyclopedia of genes and genomes.

Authors:  M Kanehisa; S Goto
Journal:  Nucleic Acids Res       Date:  2000-01-01       Impact factor: 16.971

2.  A computational approach to simplifying the protein folding alphabet.

Authors:  J Wang; W Wang
Journal:  Nat Struct Biol       Date:  1999-11

3.  Complementary advantageous substitutions in the evolution of an antiviral RNase of higher primates.

Authors:  Jianzhi Zhang; Helene F Rosenberg
Journal:  Proc Natl Acad Sci U S A       Date:  2002-03-26       Impact factor: 11.205

4.  A multiple alignment algorithm for metabolic pathway analysis using enzyme hierarchy.

Authors:  Y Tohsato; H Matsuda; A Hashimoto
Journal:  Proc Int Conf Intell Syst Mol Biol       Date:  2000

5.  Empirical and hierarchical Bayesian estimation of ancestral states.

Authors:  J P Huelsenbeck; J P Bollback
Journal:  Syst Biol       Date:  2001-06       Impact factor: 15.683

6.  What is the minimum number of letters required to fold a protein?

Authors:  Ke Fan; Wei Wang
Journal:  J Mol Biol       Date:  2003-05-09       Impact factor: 5.469

7.  Deriving phylogenetic trees from the similarity analysis of metabolic pathways.

Authors:  Maureen Heymans; Ambuj K Singh
Journal:  Bioinformatics       Date:  2003       Impact factor: 6.937

8.  Phylogenetic comparison of metabolic capacities of organisms at genome level.

Authors:  Hong-Wu Ma; An-Ping Zeng
Journal:  Mol Phylogenet Evol       Date:  2004-04       Impact factor: 4.286

9.  Phylogenetic distances are encoded in networks of interacting pathways.

Authors:  Aurélien Mazurie; Danail Bonchev; Benno Schwikowski; Gregory A Buck
Journal:  Bioinformatics       Date:  2008-09-26       Impact factor: 6.937

10.  Resurrecting the ancestral steroid receptor: ancient origin of estrogen signaling.

Authors:  Joseph W Thornton; Eleanor Need; David Crews
Journal:  Science       Date:  2003-09-19       Impact factor: 47.728

View more
  3 in total

1.  Analysis on the reconstruction accuracy of the Fitch method for inferring ancestral states.

Authors:  Jialiang Yang; Jun Li; Liuhuan Dong; Stefan Grünewald
Journal:  BMC Bioinformatics       Date:  2011-01-13       Impact factor: 3.169

2.  The histone modification H3K27me3 is retained after gene duplication and correlates with conserved noncoding sequences in Arabidopsis.

Authors:  Lidija Berke; Berend Snel
Journal:  Genome Biol Evol       Date:  2014-03       Impact factor: 3.416

3.  Gene network biological validity based on gene-gene interaction relevance.

Authors:  Francisco Gómez-Vela; Norberto Díaz-Díaz
Journal:  ScientificWorldJournal       Date:  2014-09-08
  3 in total

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