Literature DB >> 17137519

Improvement in accuracy of multiple sequence alignment using novel group-to-group sequence alignment algorithm with piecewise linear gap cost.

Shinsuke Yamada1, Osamu Gotoh, Hayato Yamana.   

Abstract

BACKGROUND: Multiple sequence alignment (MSA) is a useful tool in bioinformatics. Although many MSA algorithms have been developed, there is still room for improvement in accuracy and speed. In the alignment of a family of protein sequences, global MSA algorithms perform better than local ones in many cases, while local ones perform better than global ones when some sequences have long insertions or deletions (indels) relative to others. Many recent leading MSA algorithms have incorporated pairwise alignment information obtained from a mixture of sources into their scoring system to improve accuracy of alignment containing long indels.
RESULTS: We propose a novel group-to-group sequence alignment algorithm that uses a piecewise linear gap cost. We developed a program called PRIME, which employs our proposed algorithm to optimize the well-defined sum-of-pairs score. PRIME stands for Profile-based Randomized Iteration MEthod. We evaluated PRIME and some recent MSA programs using BAliBASE version 3.0 and PREFAB version 4.0 benchmarks. The results of benchmark tests showed that PRIME can construct accurate alignments comparable to the most accurate programs currently available, including L-INS-i of MAFFT, ProbCons, and T-Coffee.
CONCLUSION: PRIME enables users to construct accurate alignments without having to employ pairwise alignment information. PRIME is available at http://prime.cbrc.jp/.

Entities:  

Mesh:

Year:  2006        PMID: 17137519      PMCID: PMC1769516          DOI: 10.1186/1471-2105-7-524

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


Background

Multiple sequence alignment (MSA) is a useful tool for elucidating the relationships among function, evolution, sequence, and structure of biological macromolecules such as genes and proteins [1-3]. Although we can calculate the optimal alignment of a set of sequences by n-dimensional dynamic programming (DP), the DP method is applicable to only a small number of sequences. In fact, even when a sum-of-pairs (SP) score with the simplest gap cost is used as an objective function, computation of optimal MSA is an NP-hard problem [4]. Hence, many heuristic methods have been developed. Almost all practical methods presently available adopt either a progressive [5-7] or an iterative [8-10] heuristic strategy. The group-to-group sequence alignment algorithm is a straightforward extension of the pairwise sequence alignment algorithm, and is the core of progressive and iterative methods. The essential difference of group-to-group sequence alignment from pairwise sequence alignment is the existence of gaps within each group of prealigned sequences. The gap opening penalty used in an affine gap cost disrupts the independence between adjacent columns, and hence calculating the optimal alignment between two groups with respect to the SP score was shown to be NP-complete [11]. Gotoh was the first to devise a group-to-group sequence alignment algorithm that optimizes the SP score by using a candidate list paradigm [12]. An algorithm with a candidate list paradigm, similar to the branch-and-bound method, prunes the candidates that are dispensable for arrival at an optimal solution. Kececioglu and Starrett proposed another candidate-pruning method [11]. Although these algorithms can calculate the optimal alignment between two groups, they require relatively extensive computational resources. Several papers have reported faster algorithms that use the heuristic estimation of gap opening penalties [8,10]. Several studies have discussed the tendency that global alignment methods perform better than local ones [13,14]. However, the opposite is also true when some sequences to be aligned have long insertions or deletions (indels). One reason for this tendency is that almost all group-to-group sequence alignment algorithms use an affine-like gap cost that over-penalizes long indels. To alleviate this problem, several methods have combined pairwise global and local alignments, or incorporated consistency information among pairwise alignments [6,15,16]. Another strategy to prevent over-penalizing long indels is to use a concave function as the gap cost. It is relatively easy to choose a concave gap cost that does not over-penalize long indels, and several pairwise sequence alignment algorithms using this gap cost have been developed [17,18]. However, there have been few attempts to incorporate this gap cost into a group-to-group sequence alignment algorithm to develop an MSA program. In this paper, we propose a novel group-to-group sequence alignment algorithm with a piecewise linear gap cost [18], which is the key to a progressive or an iterative refinement method. The piecewise linear gap cost [18] is one of the concave functions and consists of L linear functions. Depending on the gap length, this gap cost varies its inclination, which corresponds to the gap extension penalty. However, in the case of group-to-group sequence alignment algorithm, it is difficult to calculate the proper gap extension penalty with only the data structures used in the previous algorithm that were designed to detect the opening of new gaps [12,19]. Accordingly, we newly introduce two additional data structures: 'insertion length profile' and 'dynamic gap information'. An insertion length profile vector is associated with each column of a group of sequences, while dynamic gap information keeps track of information about gaps inserted into a group during the DP process. Together with those used in the previous algorithm, gap extension penalty can be calculated efficiently. Using the proposed algorithm, we developed a program called PRIME. PRIME stands for Profile-based Randomized Iteration MEthod. As a result of benchmark tests, the accuracy of our method is shown to be comparable to the most accurate methods available today, all of which incorporate pairwise alignment information obtained from all-by-all pairwise alignment. This implies that the piecewise linear gap cost is as effective as pairwise alignment information in improving the alignment accuracy of sequences, some of which have long indels.

Algorithms

In this section, we first review the previous group-to-group sequence alignment algorithm with an affine gap cost [12,19], and then describe a novel one with a piecewise linear gap cost. The final subsection outlines a doubly nested randomized iterative strategy with which our proposed algorithm is integrated. The definitions of symbols are as follows. Let Σ be the residue set and |Σ|, the number of elements in Σ. Σ* denotes the set containing a null and each element in Σ. A null means that a residue of one sequence does not aligned with that of another sequence when aligning sequences, and is denoted by the symbol '-'. A and B denote prealigned groups of sequences. A includes m rows, and B, n rows. The respective lengths of A and B are I and J. A, a, and adenote the p-th row of A, the i-th column of A and the i-th residue of A, respectively. B, b, and bare defined similarly. Both aand bbelong to Σ*. Note that any column of a group must not be a null column, which consists of nulls only. If all nulls are removed from a group, each row is an usual sequence. A run of consecutive nulls in a row is called a gap. A gap length is the number of nulls constituting the gap. A segment of A that consists of consecutive columns ato ais denoted by A(s, t); A is also expressed as A(1, I). s(a, b) is a substitution score between residues a and b. By g(x), we mean a gap cost function of gap length x. The pair weight between the p-th sequence in A and the q-th sequence in B is w. If the three-way method [20] is used to calculate the pair weights, wcan be factorized as ·, where and are the weights for the p-th sequence in A and the q-th one in B, respectively.

Review of previous group-to-group sequence alignment algorithm with affine gap cost

The previous group-to-group sequence alignment algorithm that optimizes SP or weighted SP score with an affine gap cost is based on a two-dimensional DP method [12]. The key point of this algorithm is to exactly evaluate the gap opening penalties during the DP process. To explicitly consider gaps already present in each group, this algorithm introduces a gap state that denotes the number of consecutive nulls up to the current position. Another important feature of this algorithm is the candidate list paradigm, which is a variant of branch-and-bound methods. Because the calculation of gap opening penalties depends on a previous partial DP path, simple extension of pairwise sequence alignment algorithm may not yield globally optimal alignment between two groups [12]. For rigorous calculation, not only locally optimal partial paths but also those that possibly contribute to globally optimal alignment have to be stored at each node of a DP matrix [11,12]. In the worst case, the number of candidates to be stored grows exponentially with the total number of sequences in the two groups [11]. As discussed in some papers [8,10,12], the group-to-group sequence alignment algorithm without the candidate list paradigm may suffice for good alignment. Moreover, because the novel group-to-group sequence alignment algorithm described below requires roughly twice as much computation time as the previous one at each DP process, we adopted a simpler algorithm without the candidate list paradigm.

Basic algorithm

Let an affine gap cost function be g(x) = -(ux + v), where u(> 0) and v(> 0) are constants called gap extension penalty and gap opening penalty, respectively. The group-to-group sequence alignment algorithm with the affine gap cost employs essentially the same recurrent relations as the pairwise sequence alignment algorithm [21], with exact evaluation of gap opening and extension penalties. Like the pairwise sequence alignment algorithm, we calculate four variables at each node, (i, j), of the DP matrix: , , , and . holds the best score among , , and at (i, j). is a score of a partial alignment where aand bare aligned. and mean partial alignment scores where aand bare aligned with null columns, respectively. The recurrent equations are: where '-' denotes a null column, and is a partial DP path. A partial DP path is one from (0, 0) to the node of the DP matrix in question, representing a partial alignment; for example, represents a partial alignment with the best score between A(1, i) and B(1, j)·S(a, b) is responsible for the calculation of substitution scores and gap extension penalties: If either a or b is a null, s(a, b) = -u, and if both a and b are null, s(a, b) = 0. G(a, b; ) is the gap opening penalty when ais aligned with b: and are the gap states for the p-th and q-th rows in A(1, i - 1) and B(1, j - 1) on , respectively. As mentioned above, the gap state is the length of the gap up to the current position. γ(a, b, x, y) represents whether a gap opens with respect to a pair of rows. Specifically, if a is a residue, x ≥ y, and b is a null; or if a is a null, x ≤ y, and b is a residue; then γ(a, b, x, y) = 1. Otherwise, γ(a, b, x, y) = 0. In order to evaluate exact gap openings for calculation of each , the gap states must be updated. If ais a null, where d = arg max1≤{}. Otherwise, = 0. The other gap states are calculated in a similar way.

Use of generalized profile

Although equations 5 and 6 require O(mn) computational steps, these steps can be reduced by using a generalized profile [19] and the three-way weighting method [20]. The idea of using the generalized profile is that the same residue types or gap states on a column are treated together. The generalized profile consists of four vectors calculated from each column of a group: frequency, residue profile, and two kinds of static gap profile vectors. These vectors can be obtained in advance of the DP process. The frequency and residue profile vectors are used to calculate S(a, b), while the static gap profile vectors are necessary to calculate G(a, b; ). With the frequency and residue profile vectors, S(a, b) is calculated by where residue frequency is the weighted frequency of occurrence of residue type r (including null) on column a, and residue profile . Both and are defined in the same way. The right hand side of equation 7 requires O(|Σ*|), because each frequency and residue profile vector consists of |Σ*| values. When m × n is sufficiently large, the computation time can be considerably reduced. Although S(a, b) is easy to calculate, the profile-based calculation of G(a, b; ) is somewhat complicated, because, in addition to static gaps, dynamic gaps must be considered explicitly. A static gap consists of consecutive static nulls that already exist in each group, while a dynamic gap denotes a run of dynamic nulls that are inserted into each group during the DP process. Note that we distinguish static and dynamic gaps for convenience of the description of our algorithm, while they contribute to the total alignment score in the same way. Let us consider an example of the gap opening penalty calculation when a8 is aligned with b12 (Figure 1). To keep the discussion simple, we consider A1 and B2 only. From simple observation, we find that a gap between A1 and B2 has already opened before a8 is aligned with b12. However, if the gap opening penalty were calculated using the static gap states only, a gap opening would be detected wrongly, because a1,8 is a null, b2,12 is a residue, and x1,7 = 0 ≤ y2,11 = 0 where x1,7 and y2,11 are the static gap states of a1,7 and b2,11, respectively. For correct detection of gap opening, we need 'running gap states', each of which represents the sum of the numbers of consecutive static and dynamic nulls up to the current position. For the example shown in Figure 1, the running gap state for A2 at column position a7 is 11, which is composed of 7 static nulls and 4 dynamic nulls.
Figure 1

Example of gap extension penalty calculation. This figure shows an example of columns a8 and b12 being aligned. '*', '·', and '-' denote a residue, a static null, and a dynamic null, respectively. We assume that piecewise linear gap cost g(x) is max{-(ux + v)} and critical gap length x(= ⌊(v2 - v1)/(u1 - u2)⌋) is 4. Gap extension penalty is u1 if x ≤ 4, otherwise u2. Running gap profile vectors and are {(1, )} and {(1, + + ), (3, + ), (11, )}, respectively. Dynamic gap information (A) is {(0, 1), (2, 2), (7, 1)}. Segment profile is {(1, ), (3, + ), (5, + + )}. Similarly, the profile vectors of B are defined: = {(7, )}, = {(0, )}, (B) is empty, and = {(1, 0), (9, )}. In what follows, we consider the non-trivial calculation of the gap extension penalty with respect to the gap of B1, the target gap. By using and (A), we find that the two dynamic gaps specified by (2, 2) and (7, 1) in (A) are partially and completely aligned with the target gap, respectively. Consequently, the total number of nulls aligned with null columns of dynamic gaps to be removed is 2. Therefore, the number of columns of B1 is 5(= 7 - 2). By subtracting 5 from 8 (the end position of the segment), the starting position of A, 3, is obtained. Then, the gap extension penalty with respect to the gap of B1 is (F1·u1 + F2·u2) where F1 = + and F2 = . Note that A1 is not involved in the gap extension penalty because a1,8 is a null.

Example of gap extension penalty calculation. This figure shows an example of columns a8 and b12 being aligned. '*', '·', and '-' denote a residue, a static null, and a dynamic null, respectively. We assume that piecewise linear gap cost g(x) is max{-(ux + v)} and critical gap length x(= ⌊(v2 - v1)/(u1 - u2)⌋) is 4. Gap extension penalty is u1 if x ≤ 4, otherwise u2. Running gap profile vectors and are {(1, )} and {(1, + + ), (3, + ), (11, )}, respectively. Dynamic gap information (A) is {(0, 1), (2, 2), (7, 1)}. Segment profile is {(1, ), (3, + ), (5, + + )}. Similarly, the profile vectors of B are defined: = {(7, )}, = {(0, )}, (B) is empty, and = {(1, 0), (9, )}. In what follows, we consider the non-trivial calculation of the gap extension penalty with respect to the gap of B1, the target gap. By using and (A), we find that the two dynamic gaps specified by (2, 2) and (7, 1) in (A) are partially and completely aligned with the target gap, respectively. Consequently, the total number of nulls aligned with null columns of dynamic gaps to be removed is 2. Therefore, the number of columns of B1 is 5(= 7 - 2). By subtracting 5 from 8 (the end position of the segment), the starting position of A, 3, is obtained. Then, the gap extension penalty with respect to the gap of B1 is (F1·u1 + F2·u2) where F1 = + and F2 = . Note that A1 is not involved in the gap extension penalty because a1,8 is a null. Static gap states are compactly represented as a static gap profile. A static gap profile is obtained by gathering static gap states with the same values at a column. More specifically, the static gap profile at a column cconsists of two vectors and . Each element of both vectors has the same form: {(g, f)} where g is the gap state of previous column cand f is the weighted frequency of the occurrence of rows whose element on cis either a residue or null depending on or , respectively. Although itself may be used to calculate gap opening penalties, its accumulated form, , is more convenient to reduce the computation time. If an element in is (g, f+), f+ represents the weighted frequency of the occurrence of rows whose gap states are not less than g. For the example shown in Figure 1, , , and are {(0, ), (2, ), (7, )}, {(0, + + ), (2, + ), (7, )}, and {(0, )}, respectively. Since all gap states are different in the worst case, the total number of elements of and is at most the number of sequences in the group. Like a static gap profile, a running gap profile can represent running gap states compactly. In order to obtain a running gap profile, another data structure called a gap mediation profile is required. A gap mediation profile is defined for each path in the DP process, and records the total number of dynamic nulls inserted into static gaps that are currently open. Each element of the gap mediation profile is expressed as (s, d), where s is the length of a static gap and d is the summed length of dynamic gaps inserted within or after the static gap. Let (A) be the gap mediation profile of group A at the DP node (i, j)·(A) follows a recurrent relation, the initial condition of which is (A) = {(0, 0)}. We first consider the case where aand bare aligned. For each (g, f) in , if there exists element (s, d) in (A) such that g = s, then (s + 1, d) ∈ (A). In the case where bis aligned with a null column, then (s, d + 1) ∈ (A) where (s, d) is an element in (A) or (A) depending on the maximum operation of equation 4. If ais aligned with a null column, (A) equals (A) or (A). In the case of Figure 1, (A) = {(0, 1), (2, 1), (7, 4)} is derived from (A) = {(0, 0), (2, 0), (7, 3)}. The other gap mediation profile vectors are constructed in a similar way. Running gap profile vectors and are obtained by combining gap mediation profile (A), and static gap profiles and , respectively. For each (g, f+) in , (s, d) is chosen from (A) such that g = s, and then (s + d, f+) ∈ . Similarly, is obtained from (A) and . For example, and at the node (8, 12) of Figure 1 are {(1, + + ), (3, + ), (11, )} and {(1, )}, respectively. Using running gap profile vectors , , , and , Equation 6 can be rewritten as: S • E+ is expressed as where sand are the p-th and q-th elements in S and E+, respectively, and f(e) is the weighted frequency of element e. q is chosen such that the gap state of is the smallest among the elements in E+ whose gap states are not less than that of s. Calculation of S • E+ requires O(|S|) + |E+|), and hence G(a, b; ) at most O(m + n). Using equation 8 instead of equation 6 can reduce computation from O(mn) to O(m + n) even in the worst case where gap states on a column are mutually different.

Novel group-to-group sequence alignment algorithm with piecewise linear gap cost

In this section, we describe a novel group-to-group sequence alignment algorithm with a piecewise linear gap cost. Although this algorithm uses recurrent equations 1 to 4, the algorithms calculating S(a, b) and G(a, b; ) must be changed. Roughly speaking, the term for calculating gap extension penalties is transferred from S(a, b) to G(a, b; ). After explanation of the piecewise linear gap cost, we describe these algorithms in detail.

Piecewise linear gap cost

The piecewise linear gap cost consists of several linear functions [18]: where u> u(≥ 0) and v> v(> 0). When L = 1, this cost is the same as the affine gap cost. This cost could alleviate over-penalizing long indels, because the inclination of g(x), which corresponds to a gap extension penalty, u, becomes small as gap length increases. In other words, this cost calculates gap extension penalties based on gap length. For the sake of simplicity, we restricted our attention to the case of L = 2. Then, g(x) = -(u1x + v1) if x ≤ xor g(x) = -(u2x + v2), otherwise, x= ⌊(v2 - v1)/(u1 - u2)⌋ is called the critical gap length.

Calculation of substitution score

As mentioned above, the calculation of gap extension penalties must be separated from the calculation of the substitution score S(a, b) in order to use the piecewise linear gap cost. Therefore, S(a, b) is expressed as: where . Note that this equation and the definition of residue profile vector sum over not Σ* but Σ.

Calculation of gap extension penalty

In the previous algorithm with an affine gap cost, G(a, b; ) was responsible for the gap opening penalty only; however, it must take care of the gap extension penalty in the case of the piecewise linear gap cost. Therefore, a term for gap extension penalty is added to the right hand side of equation 8. Let us consider an example of gap extension penalty calculation for the null on b12 aligned with the residues on a8 (the last column of Figure 1). The gap state at b1,12 is 8. With omission of nulls that are aligned with other nulls, the lengths of the gap on B1 relative to A2, A3, and A4 are 1, 4, and 6, respectively. Assuming that the critical gap length x= 4, we obtain the respective gap extension penalties for A2, A3, and A4 as u1, u1, and u2. Therefore, the gap extension penalty in question is (F1·u1 + F2·u2), where F1 = + and F2 = . This example indicates two important points for the exact calculation of gap extension penalty. First, each gap length is obtained by counting the residues on each row of a specific range in A called 'relevant segment', A(3, 8) in this example. Second, the two nulls on B1 at columns b5 and b11 are aligned with two separate dynamic gaps inserted into A. The first observation suggests that F1 and F2 for any segment may be calculated before the DP process. However, the second observation indicates that the number of null columns of dynamic gaps aligned with static nulls on a target gap must be subtracted from the gap state of the target gap for correct assignment of the relevant segment; without this subtraction, the relevant segment would be assigned as A(1, 8) in the above example. We initially consider the first point, neglecting the presence of dynamic gaps for a moment. Without loss of generality, we assume that the residues on aare aligned with a null of a target gap on bwhose gap state is g. We define F0(a) as the weighted fraction of nulls on a: , where δ(a, b) = 1 if a = b, otherwise, δ(a, b) = 0, and '-' denotes a null. F0(a) is the same as the null component of the frequency profile at a, i.e. F0(a) = . We also define F1(A, i, g) as the sum of weights of sequences {A} such that a≠ '-' and the number of residues within segment A(i - g + 1, i) aligned with the target gap is less than or equal to x: , where Δ(a, i, g) = 1 if the number of residues on the p-th row of A(i - g + 1, i) is less than or equal to x, otherwise, Δ(a, i, g) = 0. Specifically, if , then Δ(a, i, g) = 1, otherwise, Δ(a, i, g) = 0. Likewise, F2(A, i, g) is defined as the sum of weights of sequences {A} such that a≠ '-' and the number of residues within A(i - g + 1, i) aligned with the target gap is greater than x. Obviously, F0(a)+ F1(A, i, g) + F2(A, i, g) = 1.     (11) Because there may exist gap states g and g' (0 ≤ g The second point raises the key problem: how to determine the 'tailored gap state' of the target gap, = g - s, where g is the gap state of the target gap and s is the number of dynamic null columns to be removed for correct assignment of the relevant segment. For example, dynamic null columns aligned with b5 and b11 in Figure 1 are removed. To keep track of the dynamic gaps to be removed, we newly introduce the 'dynamic gap information' list. Each element of dynamic gap information is represented by (p, l), where p and l indicate the position and the length of a dynamic gap, respectively. For efficiency, the dynamic gap information list {(p, l)} is sorted in order of p. The dynamic gap information of group A at (i, j), (A), is recurrently calculated as follows. When aand bare aligned, (A) is simply copied from (A). Similarly, when ais aligned with a null column, (A) is copied from (A) or (A) depending on the maximum operation of recurrent equation 3. When bis aligned with a null column, (A) is first copied from (A) or (A), and then a new element is added to it or its last element is modified. Specifically, if the last element of (A) is (i, l), it is modified to (i, l + 1). Otherwise, a new element (i, 1) is added to (A). The other dynamic gap information lists are obtained in a similar way. It is worth mentioning that dynamic gap information (A) and gap mediation profile (A) contain information on dynamic gaps from different viewpoints. The information held in dynamic gap information is relevant to the group aligned with a gap in question (group A in the present example), while that maintained in a gap mediation profile is relevant to the group containing the gap (group B in the above example). In addition, each element of (A) refers to a single dynamic gap, while that of (A) records the total length of separate dynamic gaps inserted within or after a static gap. In the case of Figure 1, each element of (A) = {(0, 1), (2, 2), (7, 1)} indicates the dynamic gaps of lengths 1, 2, and 1 inserted before column a1, after a2, and after a7, respectively, while that of (A) = {(0, 1), (2, 1), (7, 4) } means the total length of dynamic gaps inserted after the last non-null residue within or before the present column in A1 or A4, A3, and A2, respectively. Given a dynamic gap information list D(A) = {(p, l)} and a gap state g, we can easily derive the tailored gap state with the following algorithm, in which s denotes the total number of dynamic gap columns to be removed and tindicates the distance in the reverse direction from the current position i to the start position of the k-th dynamic gap inserted into A(1, i): Algorithm getTailoredGapState(D(A), g) 1. s ← 0 2. for k ← |D(A)| down to 1 (a) t← s + i - p+ l (b) if t≤ g, then s ← s + l (c) else if t- l (d) if t≥ g, then return ← g - s 3. retrun ← g - s The gap extension penalty for the target gap is then obtained by w{u1·F1(A, i, ) + u2·F2(A, i, )},     (12) where wis the weight given to the sequence containing the target gap. Note that step 2c in this algorithm examines whether or not the dynamic gap in question is partially aligned with the target gap. For the example considered in Figure 1, t3 = 0 + 8 - 7 + 1 = 2, and s = l3 = 1 are calculated after the first iteration of steps 2 in this algorithm. In the second iteration, we obtain t2 = 1 + 8 - 2 + 2 = 9. Because t2 = 9 > g = 8 and t2 - l2 = 7 arget gap, and hence the number of dynamic null columns to be removed 8 - 7 = 1 is added to s. The gap extension penalty, u, summed over all the nulls on column bcan easily be calculated with the following algorithm: 1. u ← 0 2. for h ← 1 to || (a) ← getTailoredGapState(D(A), g) (b) u ← u + f{u1·F1(A, i, ) + u2·F2(A, i, )} 3. return u where (g, f) is the h-th element of . Because we have already prepared running gap state profile , the computation is done in O(|D(A)|·||). To obtain the total gap extension penalty at each DP step, we must also consider the opposite situation where residues on bare aligned with gaps on ain a similar way.

Doubly nested randomized iterative strategy

The doubly nested randomized iterative strategy involves refinement of alignment, phylogenetic tree, and pair weights until these are mutually consistent [9]. After preparation of an initial alignment with such progressive methods as the oligomer counting based method [8,10], this strategy refines the initial alignment as follows: 1. Calculate a distance matrix from the multiple alignment 2. Construct a phylogenetic tree from the distance matrix 3. Calculate pair weights from the phylogenetic tree 4. Iteratively refine the alignment using the phylogenetic tree and the pair weights (a) Divide the alignment into two groups based on a randomly chosen branch of the tree (b) Align these two groups using a group-to-group sequence alignment algorithm (c) Repeat steps 4a to 4b until no better weighted SP score is obtained 5. Repeat steps 1 to 4 until the weighted SP score of the alignment does not improve anymore at step 4

Results

PRIME

We developed a program called PRIME (Profile-based Randomized Iteration Method). PRIME is written in ISO standard C++, implementing the doubly nested randomized iterative strategy similar to our previous MSA program, Prrn [9]. However, PRIME employs our proposed algorithm with a piecewise linear gap cost in contrast to Prrn that uses an affine gap cost. Another algorithmic difference between PRIME and Prrn is that the latter uses the candidate list paradigm in the group-to-group sequence alignment algorithm and the anchoring method, whereas the former adopts a simpler DP method without anchoring heuristics. The parameters of PRIME including selection of substitution matrix and gap cost parameters are optimized using an older BAliBASE, version 2.01 [22]. Because only about 20% of the sequences in BAliBASE version 3.0 [23] used for the test are common to those in BAliBASE version 2.01, we do not think that these parameters are over-fitted against BAliBASE version 3.0. Initial MSAs are constructed using a simple progressive method with the proposed group-to-group sequence alignment algorithm based on a distance matrix calculated from pairwise sequence alignment. The PRIME source code is provided as an additional file [see Additional file 1], and can be downloaded at PRIME website [24]. The future version of PRIME will be available at this site.

Benchmarks

To evaluate the performance of PRIME and other MSA programs shown in Table 1, we execute two benchmarks: BAliBASE version 3.0 [22,23,25] and PREFAB version 4.0 [8]. In the case of PREFAB, we also test two global pairwise sequence alignment programs as controls: PSAand PSA. PSAand PSAuse the piecewise linear gap cost and the affine gap cost, respectively.
Table 1

List of evaluated programs

programversionoption
PRIMEpiecewiseblosum62, g(x) = max{-(x + 9), -(0.5x + 21.5)}
PRIMEaffineblosum62, g(x) = -(x + 9)
Prrn [9]3.4-b2 -mblosum62 -u1 -v9
MAFFT* [15]5.662--maxiterate 1000 --localpair (L-INS-i)
ProbCons* [16]1.09default
T-Coffee* [27]2.02default
MUSCLE [8]3.52default
DIALIGN-T [28]0.2.1default
POA [5]2-do_global -do_progressive blosum80_trunc.mat
ClustalW [7]1.83default

Programs with * employ pairwise alignment information when calculating multiple alignment. Parameters or options of each program other than the gap penalty ones are chosen to obtain as accurate an alignment as possible.

List of evaluated programs Programs with * employ pairwise alignment information when calculating multiple alignment. Parameters or options of each program other than the gap penalty ones are chosen to obtain as accurate an alignment as possible.

BAliBASE

BAliBASE is categorized into five references according to the nature of sequences to be aligned (Table 2). Reference 1 is further divided into two sub-references based on sequence identities. Although the previous BAliBASE version 2.01 has been widely used, it had a problem that some sequences were trimmed off non-homologous regions [26]. Therefore, two test sets are prepared in BAliBASE version 3.0: full length set and homologous region set. Each sequence in the full length set is not trimmed off non-homologous regions, whereas the homologous region set consists of alignments of trimmed sequences and hence corresponds to the previous BAliBASE. However, reference 4 is excluded from the homologous region set due to its objective.
Table 2

BAliBASE version 3.0 contents

no. of alignmentscharacteristic of alignment
Reference 1.137phylogenetically equidistant (less than 20% identity)
Reference 1.242phylogenetically equidistant (20 to 40% identity)
Reference 239families including orphan sequences
Reference 329equidistant families (less than 25% identity)
Reference 448long N/C terminal extensions (excluded from homologous region set)
Reference 514long internal insertions
BAliBASE version 3.0 contents

Alignment evaluation based on BAliBASE

To evaluate alignment accuracy based on BAliBASE, we use sum-of-pairs and column scores [14]. The sum-of-pairs score (SPS) is defined as the proportion of correctly aligned residue pairs: where I and J are the number of columns of test and reference alignments, respectively. is defined as: If aligned residue pair aand aof the test alignment also exists in the reference alignment, P(m, n) = 1. Otherwise, p(m, n) = 0. is the total number of aligned pairs on column j of the reference alignment. The column score (CS) represents the proportion of correctly aligned columns: If the column of the test alignment is identical to the i-th column of the reference alignment, c= 1. Otherwise, c= 0.

PREFAB

PREFAB is another MSA benchmark. Each alignment of PREFAB is generated automatically, while that of BAliBASE is constructed by human expertise. PREFAB consists of three data sets: main, long gap, and weighting sets. The main set corresponds to the previous PREFAB version 3.0, which is not categorized unlike BAliBASE. Each alignment of the long gap set, a subset of the main set, contains one or more gaps whose lengths are more than 10. The weighting set involves alignments each of which includes more sequences of one sub-family than that of the other sub-families. Whereas each reference alignment of BAliBASE is provided as an MSA, each reference alignment of PREFAB is provided as a pairwise alignment of a pair of PDB sequences of known structures.

Alignment evaluation based on PREFAB

For alignment evaluation of PREFAB, the quality score is employed, which measures only two PDB sequences within each alignment. The quality score (QS) is the ratio of correctly aligned residue pairs of the reference pairwise alignment: , where J is the number of residue pairs in the reference alignment. If the residue pair of the test alignment is also aligned in the reference alignment, p= 1. Otherwise, p= 0. Note that if the reference alignment is pairwise alignment, quality score, sum-of-pairs score, and column score have the same value.

Results of BAliBASE benchmark test

Full length set

The average sum-of-pairs and column scores of the full length set are shown in Tables 3 and 4, respectively. The last columns of both tables are the rank sum of the Friedman test. The program with the smallest rank sum means that the program consistently constructs the most accurate alignments even if it does not achieve the largest average score. The p-values of the Friedman test are shown in the additional file [see Additional file 2]. The Friedman test indicates that the tested programs are classified into three groups according to their performances. The most accurate group consists of PRIME, PRIME, MAFFT, ProbCons, and T-Coffee. The second most accurate one is Prrn and MUSCLE. The accuracies of DIALIGN-T, POA, and ClustalW are comparable to each other but are significantly lower than those of Prrn and MUSCLE. Figure 2 shows the performance difference between PRIMEand PRIME. In this figure, we plot the difference in alignment scores of PRIMEand PRIME. A positive difference score means that PRIMEconstructs more accurate alignments than PRIME, and vice versa. Although the difference is not statistically significant, PRIMEshows better performance than PRIME, as expected.
Table 3

Average sum-of-pairs scores of full length set

Ref. 1.1Ref. 1.2Ref. 2Ref. 3Ref. 4Ref. 5OverallRanksum
PRIMEpiecewise0.6430.9330.9220.8590.9100.8820.861809
PRIMEaffine0.6350.9310.8980.8510.8820.8710.846912
Prrn0.5740.9230.9010.8200.8590.8210.8211055
MAFFT0.6710.9380.9230.8520.9180.8920.868656
ProbCons0.6480.9420.9050.8350.8870.8790.851764
T-Coffee0.6130.9330.9160.8260.9000.8580.846884
MUSCLE0.5700.9090.8880.8080.8570.8390.8151260
DIALIGN-T0.4890.8880.8590.7440.8170.7800.7681668
POA0.4740.8570.8570.7330.8050.7540.7531804
ClustalW0.4970.8640.8480.7220.7860.7130.7481682

Each column shows average sum-of-pairs scores using all alignments of each reference of the full length set. Overall and Ranksum columns show the average sum-of-pairs scores and the rank sum of the Friedman test using all alignment of the whole full length set, respectively. A smaller rank sum means better accuracy.

Table 4

Average column scores of full length set

Ref. 1.1Ref. 1.2Ref. 2Ref. 3Ref. 4Ref. 5OverallRanksum
PEIMEpiecewise0.4160.8390.4450.5660.5730.5520.572846
PRIMEaffine0.3910.8260.4130.5390.4830.4960.531958
Prrn0.3340.7910.4060.4690.4910.4110.4991080
MAFFT0.4490.8390.4360.5600.6070.5440.583759
ProbCons0.4010.8510.3740.4620.5300.5090.532847
T-Coffee0.3240.8320.3840.4590.5630.5340.5251017
MUSCLE0.3130.7950.3430.3800.4600.4080.4651246
DIALIGN-T0.2460.7230.2900.3470.4620.3890.4231554
POA0.2240.6780.2650.3430.4130.3230.3891690
ClustalW0.2210.7070.2190.2710.4040.2370.3681497

Each column shows average column scores using all alignments of each reference of the full length set. Overall and Ranksum columns show the average column scores and the rank sum of the Friedman test using all alignment of the whole full length set, respectively. A smaller rank sum means better accuracy.

Figure 2

Score differences between PRIMEand PRIMEon full length set. The horizontal axis denotes reference alignment ID, and the vertical axis, the difference in sum-of-pairs or column scores on respective alignments of the full length set using PRIMEand PRIME. A positive difference score of an alignment is an indication that PRIMEshows better performance than PRIMEfor the alignment, and vice versa.

Score differences between PRIMEand PRIMEon full length set. The horizontal axis denotes reference alignment ID, and the vertical axis, the difference in sum-of-pairs or column scores on respective alignments of the full length set using PRIMEand PRIME. A positive difference score of an alignment is an indication that PRIMEshows better performance than PRIMEfor the alignment, and vice versa. Average sum-of-pairs scores of full length set Each column shows average sum-of-pairs scores using all alignments of each reference of the full length set. Overall and Ranksum columns show the average sum-of-pairs scores and the rank sum of the Friedman test using all alignment of the whole full length set, respectively. A smaller rank sum means better accuracy. Average column scores of full length set Each column shows average column scores using all alignments of each reference of the full length set. Overall and Ranksum columns show the average column scores and the rank sum of the Friedman test using all alignment of the whole full length set, respectively. A smaller rank sum means better accuracy.

Homologous region set

The average sum-of-pairs and column scores of the homologous region set are shown in Tables 5 and 6, respectively. The p-values of the Friedman test are shown in the additional file [see Additional file 3]. Unlike the results of the full length set, little difference in accuracy was detected between PRIMEand PRIME. Figure 3 shows the performance difference between them. Because the terminal non-homologous regions trimmed off in the homologous region set are usually long, for the full length set, the piecewise linear gap cost treats the long terminal gaps more effectively than the affine gap cost, and hence PRIMEshows better performance than PRIME. However, because the difference between these gap costs is relatively small in the homologous region set, PRIMEand PRIMEshow similar performance. The relative performance of the nine programs examined is nearly the same as that of the full length set in a statistical sense.
Table 5

Average sum-of-pairs scores of homologous region set

Ref. 1.1Ref. 1.2Ref. 2Ref. 3Ref. 5OverallRanksum
PRIMEpiecewise0.7720.9400.9550.9030.8910.894613
PRIMEaffine0.7810.9380.9540.9070.8960.897634
Prrn0.7630.9360.9540.8940.8870.889698
MAFFT0.7530.9400.9460.8900.8970.886654
ProbCons0.7880.9530.9530.9100.9070.904489
T-Coffee0.7040.9390.9400.8780.8880.870821
MUSCLE0.7350.9310.9430.8820.8700.875907
DIALIGN-T0.5730.9010.8970.7930.8210.7981406
POA0.6340.8770.9230.8220.8000.8161370
ClustalW0.6640.9050.9220.8160.7880.8271263

Each column shows average sum-of-pairs scores using all alignments of each reference of the homologous region set. Overall and Ranksum columns show the average sum-of-pairs scores and the rank sum of the Friedman test using all alignment of the whole homologous region set, respectively. A smaller rank sum means better accuracy.

Table 6

Average column scores of homologous region set

Ref. 1.1Ref. 1.2Ref. 2Ref. 3Ref. 5OverallRanksum
PEIMEpiecewise0.5880.8490.5950.6360.5750.665640
PRIMEaffine0.5890.8470.5820.6480.5930.666640
Prrn0.5610.8340.6010.6300.5580.654708
MAFFT0.5520.8460.5320.6310.5780.640670
ProbCons0.5910.8750.5400.6250.5830.658548
T-Coffee0.4760.8400.4910.6250.5400.607822
MUSCLE0.4960.8230.4960.5740.5010.596946
DIALIGN-T0.3380.7610.3700.4520.4290.4851339
POA0.3900.7120.4240.4590.3710.4931348
ClustalW0.4160.7910.4430.4750.3940.5291193

Each column shows average column scores using all alignments of each reference of the homologous region set. Overall and Ranksum columns show the average column scores and the rank sum of the Friedman test using all alignment of the whole homologous region set, respectively. A smaller rank sum means better accuracy.

Figure 3

Score differences between PRIMEand PRIMEon homologous region set. The horizontal axis denotes reference alignment ID, and the vertical axis, the difference in sum-of-pairs or column scores on respective alignments of the homologous region set using PRIMEand PRIME. A positive difference score of an alignment is an indication that PRIMEshows better performance than PRIMEfor the alignment, and vice versa.

Score differences between PRIMEand PRIMEon homologous region set. The horizontal axis denotes reference alignment ID, and the vertical axis, the difference in sum-of-pairs or column scores on respective alignments of the homologous region set using PRIMEand PRIME. A positive difference score of an alignment is an indication that PRIMEshows better performance than PRIMEfor the alignment, and vice versa. Average sum-of-pairs scores of homologous region set Each column shows average sum-of-pairs scores using all alignments of each reference of the homologous region set. Overall and Ranksum columns show the average sum-of-pairs scores and the rank sum of the Friedman test using all alignment of the whole homologous region set, respectively. A smaller rank sum means better accuracy. Average column scores of homologous region set Each column shows average column scores using all alignments of each reference of the homologous region set. Overall and Ranksum columns show the average column scores and the rank sum of the Friedman test using all alignment of the whole homologous region set, respectively. A smaller rank sum means better accuracy.

Effects of non-homologous regions

We examine the effects of non-homologous regions in more detail. The critical difference between the full length and homologous region sets is the existence of non-homologous regions at N/C terminals. Therefore, the difference in alignment scores obtained by the same program for the corresponding members in the full length and homologous region sets indicates to what extent the program properly deals with terminal gaps. Figures 4 and 5 show the average difference of sum-of-pairs and column scores between the full length and homologous region sets. Each difference score is calculated by subtracting the alignment score of the full length set from that of the homologous region set. A positive difference score means that the non-homologous regions adversely affect alignment accuracy, whereas a negative score indicates improvement in alignment accuracy due to the presence of such regions. If the score difference is close to 0, the program is considered to be robust against the non-homologous regions. The results indicate that PRIMEis less affected by such regions than PRIME. This follows the general tendency that terminal gaps reduce more significantly the accuracy of global alignment programs including Prrn, MUSCLE, POA, and ClustalW than that of MAFFT, ProbCons, and T-Coffee that incorporate local alignment information in some ways. These observations indicate that PRlMEdeals with terminal gaps better than conventional global MSA programs, although not as well as those incorporating local alignment information.
Figure 4

Average sum-of-pairs score differences between full length and homologous region sets. Each point means average sum-of-pairs score difference in respective alignments on each reference of the full length and homologous region sets. PRIMEdenotes PRIME, and PRIME, PRIME. The smaller absolute value of a score indicates that the introduction of long terminal indels less affects the alignment accuracy of a program.

Figure 5

Average column score differences between full length and homologous region sets. Each point means average column score difference in respective alignments on each reference of the full length and homologous region sets. PRIMEdenotes PRIME, and PRIME, PRIME. The smaller absolute value of a score indicates that the introduction of long terminal indels less affects the alignment accuracy of a program.

Average sum-of-pairs score differences between full length and homologous region sets. Each point means average sum-of-pairs score difference in respective alignments on each reference of the full length and homologous region sets. PRIMEdenotes PRIME, and PRIME, PRIME. The smaller absolute value of a score indicates that the introduction of long terminal indels less affects the alignment accuracy of a program. Average column score differences between full length and homologous region sets. Each point means average column score difference in respective alignments on each reference of the full length and homologous region sets. PRIMEdenotes PRIME, and PRIME, PRIME. The smaller absolute value of a score indicates that the introduction of long terminal indels less affects the alignment accuracy of a program.

Results of PREFAB benchmark test

The average quality scores of the three sets of PREFAB are shown in Table 7. The overall tendencies of relative performances and the Friedman tests of the main and long gap sets are nearly the same as those of BAliBASE. However, in the case of the weighting set, all programs except POA are comparable to each other. Because POA does not use sequence weights, 'biased sub-family composition' might adversely affect the performance of POA compared with the other programs.
Table 7

Average quality scores of PREFAB

MainWeightingLong gap
QSRanksumQSRanksumQSRanksum

PRIMEpiecewise0.72181510.6495880.6581408
PRIMEaffine0.71883550.6376170.6511504
Prrn0.72281200.6246210.6531455
MAFFT0.72277440.6395850.6601352
ProbCons0.70586590.6205940.6371443
T-Coffee0.70091260.6275840.6311640
MUSCLE0.680104460.6076420.5961918
DIALIGN-T0.621132770.5877540.5412506
POA0.603146620.5548680.5132789
ClustalW0.617129520.6036500.5192583
PSApiecewise0.591145250.6386270.4982804
PSAaffine0.581147890.6216700.4892856

Each QS and Ranksum columns show the average quality scores and the rank sum of the Friedman test using quality scores on all alignments of each reference set, respectively. A smaller rank sum means better accuracy.

Average quality scores of PREFAB Each QS and Ranksum columns show the average quality scores and the rank sum of the Friedman test using quality scores on all alignments of each reference set, respectively. A smaller rank sum means better accuracy.

Computation time

The computation time of each program for executing the benchmarks is compiled in Table 8. The computer we used is Pentium3 933 MHz with 1 GB memory, running on RedHat Linux 7.3. PRIMEand PRIMEare somewhat slower than most programs tested. The computational speed would be significantly improved by incorporating anchoring heuristics and refining source codes.
Table 8

Computation time

BAliBASEPREFAB
PRIMEpiecewise9.4 × 1055.5 × 105
PRIMEaffine4.9 × 1054.3 × 105
Prrn6.8 × 1051.9 × 105
MAFFT1.9 × 1042.7 × 104
ProbCons6.4 × 1041.9 × 105
T-Coffee7.2 × 1052.0 × 106
MUSCLE7.9 × 1031.6 × 104
DIALIGN-T3.0 × 1041.2 × 105
POA1.0 × 1042.6 × 104
ClustalW8.3 × 1032.7 × 104

BAliBASE column shows total times (sec.) of constructing all alignments of the full length and homologous region sets by each program, while PREFAB column, those of calculating whole alignments of the main and weighting sets only.

Computation time BAliBASE column shows total times (sec.) of constructing all alignments of the full length and homologous region sets by each program, while PREFAB column, those of calculating whole alignments of the main and weighting sets only.

Discussions and Conclusion

The group-to-group sequence alignment algorithm is the key to most heuristic MSA algorithms. Although many group-to-group sequence alignment algorithms focus on position-specific gap opening penalties [7,8,10,12], they use essentially a constant gap extension penalty similar to that of the affine gap cost. For global MSA algorithms, use of the constant gap extension penalty could lead to deterioration of alignment accuracy when some of the sequences to be aligned have long indels. To our knowledge, POA version 2 [5] is the sole precedent that incorporates length-dependent gap extension penalties into the group-to-group sequence alignment algorithm. Examination of POA with various options indicated that length-dependent gap extension penalties with global alignment strategy are effective to improve alignment accuracy when some of the sequences to be aligned have long indels (data not shown). In this paper, we proposed a novel group-to-group sequence alignment algorithm with the piecewise linear gap cost, and developed a program called PRIME. The advantage of using the piecewise linear gap cost is that this gap cost more accurately models the occurrence of long gap in a simple way than other gap cost does. As a result of BAliBASE benchmark test, PRIME achieved alignment accuracies comparable to the most accurate programs available today including L-INS-i of MAFFT, ProbCons, and T-Coffee. Unlike others, PRIME does not rely on pairwise alignment information. This implies that the introduction of length-dependent gap extension penalties could contribute to improving the alignment accuracy even when pairwise alignment information is not used. It should be noted that our proposed algorithm has two inherent drawbacks. First, it is considerably slower than many popular algorithms. Second, selecting the parameters of the piecewise linear gap cost is somewhat more complicated than that of the affine gap cost. However, these drawbacks would not be serious enough to reduce the advantages of our proposed algorithm and PRIME. Unlike most popular algorithms, PRIME can circumvent the time-consuming process for obtaining pairwise alignment information, and hence it is theoretically advantageous for aligning a large number of sequences. Our preliminary examination confirmed the expected dependency of computational time on the number of sequences to be aligned. However, the current version of PRIME is still slower than most of other programs over the examined range of the number of sequences (data not shown). One of the reasons is that the current PRIME does not use any heuristics, such as anchoring or grouping method used in Prrn, for reducing the computation. To improve calculation speed of PRIME without a loss of accuracy, we are attempting to incorporate these heuristics. To further improve alignment accuracy, we will investigate several problems including the conditions under which PRIMEconstructs more accurate alignment than PRIME, the potential of other objective functions, and the effect of incorporating pairwise alignment information.

Availability and Requirements

Project name: PRIME project Project home page: Operating system(s): Platform independent Programming language: C++ Licence: GNU GPL version 2 or later Any restrictions to use by non-academics: None

Authors' contributions

SY devised the proposed algorithms, implemented PRIME, carried out the benchmark test and its evaluation, and drafted the manuscript. OG conceived of the study, devised the proposed algorithms, helped to implement PRIME, and drafted the manuscript. HY participated in the design and coordination of the study, and helped to implement PRIME. All authors read and approved the final manuscript.

Additional File 1

PRIME source code. This tar.gz archive includes the source files of PRIME. To compile PRIME, one can check 'INSTALL' and 'Makefile' in the archive. Although 'Makefile' basically assumes GNU make and g+ +, another compiler can be used with a few modification of 'Makefile'. Click here for file

Additional File 2

. Each value is p-value of the Friedman test, indicating the significance of a difference in performance between programs of a row and a column. The upper right and lower left p-values are calculated using sum-of-pairs and column scores on all alignments of the whole full length set, respectively. PRIMEdenotes PRIME, and PRIME, PRIME. The respective signs + and - denote that a program of a row performs significantly better and worse than that of a column. Click here for file

Additional File 3

. Each value is p-value of the Friedman test, indicating the significance of a difference in performance between programs of a row and a column. The upper right and lower left p-values are calculated using sum-of-pairs and column scores on all alignments of the whole homologous region set, respectively. PRIMEdenotes PRIME, and PRIME, PRIME. The respective signs + and - denote that a program of a row performs significantly better and worse than that of a column. Click here for file
  24 in total

1.  Evaluation of protein multiple alignments by SAM-T99 using the BAliBASE multiple alignment test set.

Authors:  K Karplus; B Hu
Journal:  Bioinformatics       Date:  2001-08       Impact factor: 6.937

Review 2.  Recent progress in multiple sequence alignment: a survey.

Authors:  Cédric Notredame
Journal:  Pharmacogenomics       Date:  2002-01       Impact factor: 2.533

3.  T-Coffee: A novel method for fast and accurate multiple sequence alignment.

Authors:  C Notredame; D G Higgins; J Heringa
Journal:  J Mol Biol       Date:  2000-09-08       Impact factor: 5.469

4.  MAFFT: a novel method for rapid multiple sequence alignment based on fast Fourier transform.

Authors:  Kazutaka Katoh; Kazuharu Misawa; Kei-ichi Kuma; Takashi Miyata
Journal:  Nucleic Acids Res       Date:  2002-07-15       Impact factor: 16.971

5.  3DCoffee: combining protein sequences and structures within multiple sequence alignments.

Authors:  Orla O'Sullivan; Karsten Suhre; Chantal Abergel; Desmond G Higgins; Cédric Notredame
Journal:  J Mol Biol       Date:  2004-07-02       Impact factor: 5.469

6.  MUSCLE: multiple sequence alignment with high accuracy and high throughput.

Authors:  Robert C Edgar
Journal:  Nucleic Acids Res       Date:  2004-03-19       Impact factor: 16.971

7.  Combining partial order alignment and progressive multiple sequence alignment increases alignment speed and scalability to very large alignment problems.

Authors:  Catherine Grasso; Christopher Lee
Journal:  Bioinformatics       Date:  2004-02-12       Impact factor: 6.937

8.  BAliBASE 3.0: latest developments of the multiple sequence alignment benchmark.

Authors:  Julie D Thompson; Patrice Koehl; Raymond Ripp; Olivier Poch
Journal:  Proteins       Date:  2005-10-01

9.  Sequence comparison with concave weighting functions.

Authors:  W Miller; E W Myers
Journal:  Bull Math Biol       Date:  1988       Impact factor: 1.758

10.  An improved algorithm for matching biological sequences.

Authors:  O Gotoh
Journal:  J Mol Biol       Date:  1982-12-15       Impact factor: 5.469

View more
  3 in total

1.  Evaluating Statistical Multiple Sequence Alignment in Comparison to Other Alignment Methods on Protein Data Sets.

Authors:  Michael Nute; Ehsan Saleh; Tandy Warnow
Journal:  Syst Biol       Date:  2019-05-01       Impact factor: 15.683

2.  Assessment and refinement of eukaryotic gene structure prediction with gene-structure-aware multiple protein sequence alignment.

Authors:  Osamu Gotoh; Mariko Morita; David R Nelson
Journal:  BMC Bioinformatics       Date:  2014-06-14       Impact factor: 3.169

3.  The invariant phenylalanine of precursor proteins discloses the importance of Omp85 for protein translocation into cyanelles.

Authors:  Tobias Wunder; Roman Martin; Wolfgang Löffelhardt; Enrico Schleiff; Jürgen M Steiner
Journal:  BMC Evol Biol       Date:  2007-11-28       Impact factor: 3.260

  3 in total

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