| Improvement in accuracy of multiple sequence alignment using novel group-to-group sequence alignment algorithm with piecewise linear gap cost1Department of Computer Science, Graduate School of Science and Engineering, Waseda University, 3-4-1 Okubo, Shinjuku-ku, Tokyo 169-8555, Japan 2Computational Biology Research Center (CBRC), National Institute of Advanced Industrial Science and Technology (AIST), 2-43 Aomi, Koto-ku, Tokyo 135-0064, Japan 3Department of Intelligence Science and Technology, Graduate School of Informatics, Kyoto University, Yoshida-Honmachi, Sakyo-ku, Kyoto 606-8501, Japan
BMC Bioinformatics 2006, 7:524doi:10.1186/1471-2105-7-524 The electronic version of this article is the complete one and can be found online at: http://www.biomedcentral.com/1471-2105/7/524
©
2006 Yamada et al; licensee BioMed Central Ltd. AbstractBackgroundMultiple 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. ResultsWe 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. ConclusionPRIME enables users to construct accurate alignments without having to employ pairwise alignment information. PRIME is available at http://prime.cbrc.jp/ webcite. BackgroundMultiple 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. AlgorithmsIn 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. Ap, ai, and ap,i denote the p-th row of A, the i-th column of A and the i-th residue of Ap, respectively. Bq, bj, and bq,j are defined similarly. Both ap,i and bq,j belong 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 as to at is 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 wp,q. If the three-way method [20] is used to calculate the pair weights, wp,q can be factorized as Review of previous group-to-group sequence alignment algorithm with affine gap costThe 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 algorithmLet 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: where '-' denotes a null column, and 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(ai, bj;
Use of generalized profileAlthough 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(ai, bj), while the static gap profile vectors are necessary to calculate G(ai, bj; With the frequency and residue profile vectors, S(ai, bj) is calculated by where residue frequency
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 ck consists of two vectors 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 Running gap profile vectors Using running gap profile vectors S • E+ is expressed as where sp and Novel group-to-group sequence alignment algorithm with piecewise linear gap costIn 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(ai, bj) and G(ai, bj; Piecewise linear gap costThe piecewise linear gap cost consists of several linear functions [18]: where ul > ul+1(≥ 0) and vl+1 > vl(> 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, ul, 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 ≤ xc or g(x) = -(u2x + v2), otherwise, xc = ⌊(v2 - v1)/(u1 - u2)⌋ is called the critical gap length. Calculation of substitution scoreAs mentioned above, the calculation of gap extension penalties must be separated from the calculation of the substitution score S(ai, bj) in order to use the piecewise linear gap cost. Therefore, S(ai, bj) is expressed as: where Calculation of gap extension penaltyIn the previous algorithm with an affine gap cost, G(ai, bj; 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 ai are aligned with a null of a target gap on bj whose gap state is g. We define F0(ai) as the weighted fraction of nulls on ai: F0(ai)+ F1(A, i, g) + F2(A, i, g) = 1. (11) Because there may exist gap states g and g' (0 ≤ g <g' ≤ i) such that F1(A, i, g) = F1(A, i, g'), we need to store only distinct F1(A, i, g) values, the number of which is at most the number of rows of A, m. For actual calculations, we use an 'insertion length profile' associated with each column of a group. An insertion length profile of column ai, The second point raises the key problem: how to determine the 'tailored gap state' of the target gap, It is worth mentioning that dynamic gap information Given a dynamic gap information list Di, j(A) = {(pk, lk)} and a gap state g, we can easily derive the tailored gap state Algorithm getTailoredGapState(Di,j(A), g) 1. s ← 0 2. for k ← |Di,j(A)| down to 1 (a) tk ← s + i - pk+ lk (b) if tk ≤ g, then s ← s + lk (c) else if tk - lk <g, then s ← s + g - (tk - lk) (d) if tk ≥ g, then return The gap extension penalty for the target gap is then obtained by wB{u1·F1(A, i, where wB is 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 <g = 8, we can recognize that the dynamic gap is partially aligned with the target 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 bj can easily be calculated with the following algorithm: 1. u ← 0 (a) (b) u ← u + fh{u1·F1(A, i, 3. return u where (gh, fh) is the h-th element of Doubly nested randomized iterative strategyThe 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 ResultsPRIMEWe 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 1], and can be downloaded at PRIME website [24]. The future version of PRIME will be available at this site. 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'. Format: GZ Size: 48KB Download file BenchmarksTo 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: PSApiecewise and PSAaffine. PSApiecewise and PSAaffine use the piecewise linear gap cost and the affine gap cost, respectively. Table 1. List of evaluated programs BAliBASEBAliBASE 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 Alignment evaluation based on BAliBASETo 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. If aligned residue pair ami and ani of the test alignment also exists in the reference alignment, Pi(m, n) = 1. Otherwise, pi(m, n) = 0. If the column of the test alignment is identical to the i-th column of the reference alignment, ci = 1. Otherwise, ci = 0. PREFABPREFAB 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 PREFABFor 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: Results of BAliBASE benchmark testFull length setThe 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 2]. The Friedman test indicates that the tested programs are classified into three groups according to their performances. The most accurate group consists of PRIMEpiecewise, PRIMEaffine, 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 PRIMEpiecewise and PRIMEaffine. In this figure, we plot the difference in alignment scores of PRIMEpiecewise and PRIMEaffine. A positive difference score means that PRIMEpiecewise constructs more accurate alignments than PRIMEaffine, and vice versa. Although the difference is not statistically significant, PRIMEpiecewise shows better performance than PRIMEaffine, as expected. Additional File 2. p-values of the Friedman test of full length set. 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. PRIMEpcw denotes PRIMEpiecewise, and PRIMEafn, PRIMEaffine. The respective signs + and - denote that a program of a row performs significantly better and worse than that of a column. Format: PDF Size: 32KB Download file This file can be viewed with: Adobe Acrobat Reader
Table 3. Average sum-of-pairs scores of full length set Table 4. Average column scores of full length set Homologous region setThe 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 3]. Unlike the results of the full length set, little difference in accuracy was detected between PRIMEpiecewise and PRIMEaffine. 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 PRIMEpiecewise shows better performance than PRIMEaffine. However, because the difference between these gap costs is relatively small in the homologous region set, PRIMEpiecewise and PRIMEaffine show 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. Additional File 3. p-values of the Friedman test of homologous region set. 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. PRIMEpcw denotes PRIMEpiecewise, and PRIMEafn, PRIMEaffine. The respective signs + and - denote that a program of a row performs significantly better and worse than that of a column. Format: PDF Size: 32KB Download file This file can be viewed with: Adobe Acrobat Reader
Table 5. Average sum-of-pairs scores of homologous region set Table 6. Average column scores of homologous region set Effects of non-homologous regionsWe 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 PRIMEpiecewise is less affected by such regions than PRIMEaffine. 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 PRlMEpiecewise deals with terminal gaps better than conventional global MSA programs, although not as well as those incorporating local alignment information.
Results of PREFAB benchmark testThe 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 Computation timeThe 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. PRIMEpiecewise and PRIMEaffine are 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 Discussions and ConclusionThe 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 PRIMEaffine constructs more accurate alignment than PRIMEpiecewise, the potential of other objective functions, and the effect of incorporating pairwise alignment information. Availability and RequirementsProject name: PRIME project Project home page: http://prime.cbrc.jp/ webcite Operating system(s): Platform independent Programming language: C++ Licence: GNU GPL version 2 or later Any restrictions to use by non-academics: None Authors' contributionsSY 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. AcknowledgementsThis work was partially supported by a Grant-in-Aid for Scientific Research on Priority Areas (C) "Genome Information Science" from the Ministry of Education, Culture, Sports, Science and Technology of Japan; and by the Institute for Bioinformatics Research and Development (BIRD) of Japan Science and Technology Agency (JST). References
Have something to say? Post a comment on this article! |



on Google Scholar







author email
corresponding author email























Figure 1.





























































Figure 2.
Figure 3.
Figure 4.
Figure 5.