Literature DB >> 21851589

Reducing the worst case running times of a family of RNA and CFG problems, using Valiant's approach.

Shay Zakov1, Dekel Tsur, Michal Ziv-Ukelson.   

Abstract

BACKGROUND: RNA secondary structure prediction is a mainstream bioinformatic domain, and is key to computational analysis of functional RNA. In more than 30 years, much research has been devoted to defining different variants of RNA structure prediction problems, and to developing techniques for improving prediction quality. Nevertheless, most of the algorithms in this field follow a similar dynamic programming approach as that presented by Nussinov and Jacobson in the late 70's, which typically yields cubic worst case running time algorithms. Recently, some algorithmic approaches were applied to improve the complexity of these algorithms, motivated by new discoveries in the RNA domain and by the need to efficiently analyze the increasing amount of accumulated genome-wide data.
RESULTS: We study Valiant's classical algorithm for Context Free Grammar recognition in sub-cubic time, and extract features that are common to problems on which Valiant's approach can be applied. Based on this, we describe several problem templates, and formulate generic algorithms that use Valiant's technique and can be applied to all problems which abide by these templates, including many problems within the world of RNA Secondary Structures and Context Free Grammars.
CONCLUSIONS: The algorithms presented in this paper improve the theoretical asymptotic worst case running time bounds for a large family of important problems. It is also possible that the suggested techniques could be applied to yield a practical speedup for these problems. For some of the problems (such as computing the RNA partition function and base-pair binding probabilities), the presented techniques are the only ones which are currently known for reducing the asymptotic running time bounds of the standard algorithms.

Entities:  

Year:  2011        PMID: 21851589      PMCID: PMC3741081          DOI: 10.1186/1748-7188-6-20

Source DB:  PubMed          Journal:  Algorithms Mol Biol        ISSN: 1748-7188            Impact factor:   1.405


1 Background

RNA research is one of the classical domains in bioinformatics, receiving increasing attention in recent years due to discoveries regarding RNA's role in regulation of genes and as a catalyst in many cellular processes [1,2]. It is well-known that the function of an RNA molecule is heavily dependent on its structure [3]. However, due to the difficulty of physically determining RNA structure via wet-lab techniques, computational prediction of RNA structures serves as the basis of many approaches related to RNA functional analysis [4]. Most computational tools for RNA structural prediction focus on RNA secondary structures - a reduced structural representation of RNA molecules which describes a set of paired nucleotides, through hydrogen bonds, in an RNA sequence. RNA secondary structures can be relatively well predicted computationally in polynomial time (as opposed to three-dimensional structures). This computational feasibility, combined with the fact that RNA secondary structures still reveal important information about the functional behavior of RNA molecules, account for the high popularity of state-of-the-art tools for RNA secondary structure prediction [5]. Over the last decades, several variants of RNA secondary structure prediction problems were defined, to which polynomial algorithms have been designed. These variants include the basic RNA folding problem (predicting the secondary structure of a single RNA strand which is given as an input) [6-8], the RNA-RNA Interaction problem (predicting the structure of the complex formed by two or more interacting RNA molecules) [9], the RNA Partition Function and Base Pair Binding Probabilities problem of a single RNA strand [10] or an RNA duplex [11,12] (computing the pairing probability between each pair of nucleotides in the input), the RNA Sequence to Structured-Sequence Alignment problem (aligning an RNA sequence to sequences with known structures) [13,14], and the RNA Simultaneous Alignment and Folding problem (finding a secondary structure which is conserved by multiple homologous RNA sequences) [15]. Sakakibara et al. [16] noticed that the basic RNA Folding problem is in fact a special case of the Weighted Context Free Grammar (WCFG) Parsing problem (also known as Stochastic or Probabilistic CFG Parsing) [17]. Their approach was then followed by Dowell and Eddy [18], Do et al. [19], and others, who studied different aspects of the relationship between these two domains. The WCFG Parsing problem is a generalization of the simpler non-weighted CFG Parsing problem. Both WCFG and CFG Parsing problems can be solved by the Cocke-Kasami-Younger (CKY) dynamic programming algorithm [20-22], whose running time is cubic in the number of words in the input sentence (or in the number of nucleotides in the input RNA sequence). The CFG literature describes two improvements which allow to obtain a sub-cubic time for the CKY algorithm. The first among these improvements was a technique suggested by Valiant [23], who showed that the CFG Parsing problem on a sentence with n words can be solved in a running time which matches the running time of a Boolean Matrix Multiplication of two n × n matrices. The current asymptotic running time bound for this variant of matrix multiplication was given by Coppersmith-Winograd [24], who showed an O(n2.376) time (theoretical) algorithm. In [25], Akutsu argued that the algorithm of Valiant can be modified to deal also with WCFG Parsing (this extension is described in more details in [26]), and consequentially with RNA Folding. The running time of the adapted algorithm is different from that of Valiant's algorithm, and matches the running time of a Max-Plus Multiplication of two n × n matrices. The current running time bound for this variant is , given by Chan [27]. The second improvement to the CKY algorithm was introduced by Graham et al. [28], who applied the Four Russians technique [29] and obtained an running time algorithm for the (non-weighted) CFG Parsing problem. To the best of our knowledge, no extension of this approach to the WCFG Parsing problem has been described. Recently, Frid and Gusfield [30] showed how to apply the Four Russians technique to the RNA folding problem (under the assumption of a discrete scoring scheme), obtaining the same running time of . This method was also extended to deal with the RNA simultaneous alignment and folding problem [31], yielding an running time algorithm. Several other techniques have been previously developed to accelerate the practical running times of different variants of CFG and RNA related algorithms. Nevertheless, these techniques either retain the same worst case running times of the standard algorithms [14,28,32-36], or apply heuristics which compromise the optimality of the obtained solutions [25,37,38]. For some of the problem variants, such as the RNA Base Pair Binding Probabilities problem (which is considered to be one of the variants that produces more reliable predictions in practice), no speedup to the standard algorithms has been previously described. In his paper [23], Valiant suggested that his approach could be extended to additional related problems. However, in more than three decades which have passed since then, very few works have followed. The only extension of the technique which is known to the authors is Akutsu's extension to WCFG Parsing and RNA Folding [25,26]. We speculate that simplifying Valiant's algorithm would make it clearer and thus more accessible to be applied to a wider range of problems. Indeed, in this work we present a simple description of Valiant's technique, and then further generalize it to cope with additional problem variants which do not follow the standard structure of CFG/WCFG Parsing (a preliminary version of this work was presented in [39]). More specifically, we define three template formulations, entitled Vector Multiplication Templates (VMTs). These templates abstract the essential properties that characterize problems for which a Valiant-like algorithmic approach can yield algorithms of improved time complexity. Then, we describe generic algorithms for all problems sustaining these templates, which are based on Valiant's algorithm. Table 1 lists some examples of VMT problems. The table compares between the running times of standard dynamic programming (DP) algorithms, and the VMT algorithms presented here. In the single string problems, n denotes the length of the input string. In the double-string problems [9,12,13], both input strings are assumed to be of the same length n. For the RNA Simultaneous Alignment and Folding problem, m denotes the number of input strings and n is the length of each string. DB(n) denotes the time complexity of a Dot Product or a Boolean Multiplication of two n × n matrices, for which the current best theoretical result is O(n2.376), due to Coppersmith and Winograd [24]. MP(n) denotes the time complexity of a Min-Plus or a Max-Plus Multiplication of two n × n matrices, for which the current best theoretical result is , due to Chan [27]. For most of the problems, the algorithms presented here obtain lower running time bounds than the best algorithms previously known for these problems. It should be pointed out that the above mentioned matrix multiplication running times are the theoretical asymptotic times for sufficiently large matrices, yet they do not reflect the actual multiplication time for matrices of realistic sizes. Nevertheless, practical fast matrix multiplication can be obtained by using specialized hardware [40,41] (see Section 6).
Table 1

Time complexities of several VMT problems

ProblemStandard DP running timeImplicit [explicit] VMT algorithm running time
Results previously publishedCFG Recognition/ParsingΘ(n3)) [20-22]Θ(DB(n))[Θ(n2.38)][23]

WCFG ParsingΘ(n3)[17]Θ(MP(n))[O˜(n3log2n)][25]

RNA Single Strand FoldingΘ(n3)[6,7]Θ(MP(n))[O˜(n3log2n)][25]

RNA Partition FunctionΘ(n3)[10]Θ(MP(n))[Θ(n2.38)][25]

In this paperWCFG Inside-OutsideΘ(n3)[43]Θ(DB(n))[Θ(n2.38)]

RNA Base Pair Binding ProbabilitiesΘ(n3)[10]Θ(DB(n))[Θ(n2.38)]

RNA Simultaneous Alignment and FoldingΘ((n/2)3m)[15]Θ(MP(nm))[O˜(n3mmlog2n)]

RNA-RNA InteractionΘ(n6)[9]Θ(MP(n2))[O˜(n6log2n)]

RNA-RNA Interaction Partition FunctionΘ(n6)[12]Θ(DB(n))[Θ(n4.75)]

RNA Sequence to Structured-Sequence AlignmentΘ(n4)[13]Θ(nMP(n))[O˜(n4log2n)]

The notation corresponds to the standard big-O notation, hiding some polylogarithmic factors.

Time complexities of several VMT problems The notation corresponds to the standard big-O notation, hiding some polylogarithmic factors. The formulation presented here has several advantages over the original formulation in [23]: First, it is considerably simpler, where the correctness of the algorithms follows immediately from their descriptions. Second, some requirements with respect to the nature of the problems that were stated in previous works, such as operation commutativity and distributivity requirements in [23], or the semiring domain requirement in [42], can be easily relaxed. Third, this formulation applies in a natural manner to algorithms for several classes of problems, some of which we show here. Additional problem variants which do not follow the exact templates presented here, such as the formulation in [12] for the RNA-RNA Interaction Partition Function problem, or the formulation in [13] for the RNA Sequence to Structured-Sequence Alignment problem, can be solved by introducing simple modifications to the algorithms we present. Interestingly, it turns out that almost every variant of RNA secondary structure prediction problem, as well as additional problems from the domain of CFGs, sustain the VMT requirements. Therefore, Valiant's technique can be applied to reduce the worst case running times of a large family of important problems. In general, as explained later in this paper, VMT problems are characterized in that their computation requires the execution of many vector multiplication operations, with respect to different multiplication variants (Dot Product, Boolean Multiplication, and Min/Max Plus Multiplication). Naively, the time complexity of each vector multiplication is linear in the length of the multiplied vectors. Nevertheless, it is possible to organize these vector multiplications as parts of square matrix multiplications, and to apply fast matrix multiplication algorithms in order to obtain a sub-linear (amortized) running time for each vector multiplication. As we show, a main challenge in algorithms for VMT problems is to describe how to bundle subsets of vector multiplications operations in order to compute them via the application of fast matrix multiplication algorithms. As the elements of these vectors are computed along the run of the algorithm, another aspect which requires attention is the decision of the order in which these matrix multiplications take place.

Road Map

In Section 2 the basic notations are given. In Section 3 we describe the Inside Vector Multiplication Template - a template which extracts features for problems to which Valiant's algorithm can be applied. This section also includes the description of an exemplary problem (Section 3.1), and a generalized and simplified exhibition of Valiant's algorithm and its running time analysis (Section 3.3). In Sections 4 and 5 we define two additional problem templates: the Outside Vector Multiplication Template, and the Multiple String Vector Multiplication Template, and describe modifications to the algorithm of Valiant which allow to solve problems that sustain these templates. Section 6 concludes the paper, summarizing the main results and discussing some of its implications. Two additional exemplary problems (an Outside and a Multiple String VMT problems) are presented in the Appendix.

2 Preliminaries

As intervals of integers, matrices, and strings will be extensively used throughout this work, we first define some related notation.

2.1 Interval notations

For two integers a, b, denote by [a, b] the interval which contains all integers q such that a ≤ q ≤ b. For two intervals I = [i1, i2] and J = [j1, j2], define the following intervals: [I, J] = {q : i1 ≤ q ≤ j2}, (I, J) = {q : i2 < q < j1}, [I, J) = {q : i1 ≤ q < j1}, and (I, J] = {q : i2 < q ≤ j2} (Figure 1). When an integer r replaces one of the intervals I or J in the notation above, it is regarded as the interval [r, r]. For example, [0, I) = {q : 0 ≤ q < i1}, and (i, j) = {q : i < q < j}. For two intervals I = [i1, i2] and J = [j1, j2] such that j1 = i2 + 1, define IJ to be the concatenation of I and J, i.e. the interval [i1, j2].
Figure 1

Some interval examples.

Some interval examples.

2.2 Matrix notations

Let X be an n1 × n2 matrix, with rows indexed with 0, 1, ..., n1 - 1 and columns indexed with 0, 1, ..., n2 - 1. Denote by Xthe element in the ith row and jth column of X. For two intervals I ⊆ [0, n1) and J ⊆ [0, n2), let Xdenote the sub-matrix of X obtained by projecting it onto the subset of rows I and subset of columns J. Denote by Xthe sub-matrix X[, and by Xthe sub-matrix X. Let be a domain of elements, and ⊗ and ⊕ be two binary operations on . We assume that (1) ⊕ is associative (i.e. for three elements a, b, c in the domain, (a ⊕ b) ⊕ c = a ⊕ (b ⊕ c)), and (2) there exists a zero element ϕ in , such that for every element a ⊕ ϕ = ϕ ⊕ a = a and a ⊗ ϕ = ϕ ⊗ a = ϕ. Let X and Y be a pair of matrices of sizes n1 × n2 and n2 × n3, respectively, whose elements are taken from . Define the result of the matrix multiplication X ⊗ Y to be the matrix Z of size n1 × n3, where each entry Zis given by In the special case where n2 = 0, define the result of the multiplication Z to be an n1 × n3 matrix in which all elements are ϕ. In the special case where n1 = n3 = 1, the matrix multiplication X ⊗ Y is also called a vector multiplication (where the resulting matrix Z contains a single element). Let X and Y be two matrices. When X and Y are of the same size, define the result of the matrix addition X ⊕ Y to be the matrix Z of the same size as X and Y, where Z= X⊕ Y. When X and Y have the same number of columns, denote by the matrix obtained by concatenating Y below X. When X and Y have the same number of rows, denote by [XY] the matrix obtained by concatenating Y to the right of X. The following properties can be easily deduced from the definition of matrix multiplication and the associativity of the ⊕ operation (in each property the participating matrices are assumed to be of the appropriate sizes). Under the assumption that the operations ⊗ and ⊕ between two domain elements consume Θ(1) computation time, a straightforward implementation of a matrix multiplication between two n × n matrices can be computed in Θ(n3) time. Nevertheless, for some variants of multiplications, sub-cubic algorithms for square matrix multiplications are known. Here, we consider three such variants, which will be referred to as standard multiplications in the rest of this paper: • Dot Product: The matrices hold numerical elements, ⊗ stands for number multiplication (·) and ⊕ stands for number addition (+). The zero element is 0. The running time of the currently fastest algorithm for this variant is O(n2.376) [24]. • Min-Plus/Max-Plus Multiplication: The matrices hold numerical elements,⊗ stands for number addition and ⊕ stands for min or max (where a min b is the minimum between a and b, and similarly for max). The zero element is ∞ for the Min-Plus variant and -∞ for the Max-Plus variant. The running time of the currently fastest algorithm for these variants is [27]. • Boolean Multiplication: The matrices hold boolean elements, ⊗ stands for boolean AND (⋀) and ⊕ stands for boolean OR(⋁). The zero element is the false value. Boolean Multiplication is computable with the same complexity as the Dot Product, having the running time of O(n2.376) [24].

2.3 String notations

Let s = s0s1 ... sbe a string of length n over some alphabet. A position q in s refers to a point between the characters sand s(a position may be visualized as a vertical line which separates between these two characters). Position 0 is regarded as the point just before s0, and position n as the point just after s. Denote by ||s|| = n + 1 the number of different positions in s. Denote by sthe substring of s between positions i and j, i.e. the string ss... s. In a case where i = j, scorresponds to an empty string, and for i > j, sdoes not correspond to a valid string. An inside property βis a property which depends only on the substring s(Figure 2). In the context of RNA, an input string usually represents a sequence of nucleotides, where in the context of CFGs, it usually represents a sequence of words. Examples of inside properties in the world of RNA problems are the maximum number of base-pairs in a secondary structure of s[6], the minimum free energy of a secondary structure of s[7], the sum of weights of all secondary structures of s[10], etc. In CFGs, inside properties can be boolean values which state whether the sub-sentence can be derived from some non-terminal symbol of the grammar, or numeric values corresponding to the weight of (all or best) such derivations [17,20-22].
Figure 2

Inside and outside sub-instances, and their corresponding properties.

Inside and outside sub-instances, and their corresponding properties. An outside property αis a property of the residual string obtained by removing sfrom s (i.e. the pair of strings s0,and s, see Figure 2). Such a residual string is denoted by . Outside property computations occur in algorithms for the RNA Base Pair Binding Probabilities problem [10], and in the Inside-Outside algorithm for learning derivation rule weights for WCFGs [43]. In the rest of this paper, given an instance string s, substrings of the form sand residual strings of the form will be considered as sub-instances of s. Characters and positions in such sub-instances are indexed according to the same indexing as of the original string s. That is, the characters in sub-instances of the form sare indexed from i to j - 1, and in sub-instances of the form the first i characters are indexed between 0 and i - 1, and the remaining characters are indexed between j and n - 1. The notation β will be used to denote the set of all values of the form βwith respect to substrings sof some given string s. It is convenient to visualize β as an ||s|| × ||s|| matrix, where the (i, j)-th entry in the matrix contains the value β. Only entries in the upper triangle of the matrix β correspond to valid substrings of s. For convenience, we define that values of the form β, when j < i, equal to ϕ (with respect to the corresponding domain of values). Notations such as β, β, and βare used in order to denote the corresponding sub-matrices of β, as defined above. Similar notations are used for a set α of outside properties.

3 The Inside Vector Multiplication Template

In this section we describe a template that defines a class of problems, called the Inside Vector Multiplication Template (Inside VMT). We start by giving a simple motivating example in Section 3.1. Then, the class of Inside VMT problems is formally defined in Section 3.2, and in Section 3.3 an efficient generic algorithm for all Inside VMT problems is presented.

3.1 Example: RNA Base-Pairing Maximization

The RNA Base-Pairing Maximization problem [6] is a simple variant of the RNA Folding problem, and it exhibits the main characteristics of Inside VMT problems. In this problem, an input string s = s0s1 ⋯ srepresents a string of bases (or nucleotides) over the alphabet A, C, G, U. Besides strong (covalent) chemical bonds which occur between each pair of consecutive bases in the string, bases at distant positions tend to form additional weaker (hydrogen) bonds, where a base of type A can pair with a base of type U, a base of type C can pair with a base of type G, and in addition a base of type G can pair with a base of type U. Two bases which can pair to each other in such a (weak) bond are called complementary bases, and a bond between two such bases is called a base-pair. The notation a • b is used to denote that the bases at indices a and b in s are paired to each other. A folding (or a secondary structure) of s is a set F of base-pairs of the form a • b, where 0 ≤ a < b < n, which sustains that there are no two distinct base pairs a • b and c • d in F such that a ≤ c ≤ b ≤ d (i.e. the paring is nested, see Figure 3). Denote by |F| the number of complementary base-pairs in F. The goal of the RNA base-paring maximization problem is to compute the maximum number of complementary base-pairs in a folding of an input RNA string s. We call such a number the solution for s, and denote by βthe solution for the substring s. For substrings of the form sand s(i.e. empty strings or strings of length 1), the only possible folding is the empty folding, and thus β= β= 0. We next explain how to recursively compute βwhen j > i + 1.
Figure 3

An RNA string s. (a) A folding of type I, obtained by adding the base-pair i • (j - 1) = 0 • 8 to a folding for s= s1,8. (b) A folding of type II, in which the last index 8 is paired to index 6. The folding is thus obtained by combining two independent foldings: one for the prefix s0,6, and one for the suffix s6,9. (c) A folding of type II, in which the last index 8 is unpaired. The folding is thus obtained by combining a folding for the prefix s0,8, and an empty folding for the suffix s8,9.

An RNA string s. (a) A folding of type I, obtained by adding the base-pair i • (j - 1) = 0 • 8 to a folding for s= s1,8. (b) A folding of type II, in which the last index 8 is paired to index 6. The folding is thus obtained by combining two independent foldings: one for the prefix s0,6, and one for the suffix s6,9. (c) A folding of type II, in which the last index 8 is unpaired. The folding is thus obtained by combining a folding for the prefix s0,8, and an empty folding for the suffix s8,9. In order to compute values of the form β, we distinguish between two types of foldings for a substring s: foldings of type I are those which contain the base-pair i • (j - 1), and foldings of type II are those which do not contain i • (j - 1). Consider a folding F of type I. Since i • (j - 1) ∈ F, the folding F is obtained by adding the base-pair i • (j - 1) to some folding F' for the substring s(Figure 3a). The number of complementary base-pairs in F is thus |F'| + 1 if the bases sand sare complementary, and otherwise it is |F'|. Clearly, the number of complementary base-pairs in F is maximized when choosing F' such that |F'| = β. Now, Consider a folding F of type II. In this case, there must exist some position q ∈ (i, j), such that no base-pair a • b in F sustains that a < q ≤ b. This observation is true, since if j - 1 is paired to some index p (where i < p < j - 1), then q = p sustains the requirement (Figure 3b), and otherwise q = j - 1 sustains the requirement (Figure 3c). Therefore, q splits F into two independent foldings: a folding F' for the prefix s, and a folding F" for the suffix s, where |F| = |F'| + |F"|. For a specific split position q, the maximum number of complementary base-pairs in a folding of type II for sis then given by β+ β, and taking the maximum over all possible positions q ∈ (i, j) guarantees that the best solution of this form is found. Thus, βcan be recursively computed according to the following formula: where δ= 1 if sand sare complementary bases, and otherwise δ= 0.

3.1.1 The classical algorithm

The recursive computation above can be efficiently implemented using dynamic programming (DP). For an input string s of length n, the DP algorithm maintains the upper triangle of an ||s|| × ||s|| matrix B, where each entry Bin B corresponds to a solution β. The entries in B are filled, starting from short base-case entries of the form Band B, and continuing by computing entries corresponding to substrings with increasing lengths. In order to compute a value βaccording to the recurrence formula, the algorithm needs to examine only values of the form βsuch that sis a strict substring of s(Figure 4). Due to the bottom-up computation, these values are already computed and stored in B, and thus each such value can be obtained in Θ(1) time.
Figure 4

The table . In order to compute B, the algorithm needs to examine only values in entries of B that correspond to strict substrings of s(depicted as light and dark grayed entries).

The table . In order to compute B, the algorithm needs to examine only values in entries of B that correspond to strict substrings of s(depicted as light and dark grayed entries). Upon computing a value β, the algorithm needs to compute term (II) of the recurrence. This computation is of the form of a vector multiplication operation ⊕(β⊗ β), where the multiplication variant is the Max Plus multiplication. Since all relevant values in B are computed, this computation can be implemented by computing B⊗ B((the multiplication of the two darkened vectors in Figure 4), which takes Θ(j - i) running time. After computing term (II), the algorithm needs to perform additional operations for computing βwhich take Θ(1) running time (computing term (I), and taking the maximum between the results of the two terms). It can easily be shown that, on average, the running time for computing each value βis Θ(n), and thus the overall running time for computing all Θ(n2) values βis Θ(n3). Upon termination, the computed matrix B equals to the matrix β, and the required result β0,is found in the entry B0,.

3.2 Inside VMT definition

In this section we characterize the class of Inside VMT problems. The RNA Base-Paring Maximization problem, which was described in the previous section, exhibits a simple special case of an Inside VMT problem, in which the goal is to compute a single inside property for a given input string. Note that this requires the computation of such inside properties for all substrings of the input, due to the recursive nature of the computation. In other Inside VMT problems the case is similar, hence we will assume that the goal of Inside VMT problems is to compute inside properties for all substrings of the input string. In the more general case, an Inside VMT problem defines several inside properties, and all of these properties are computed for each substring of the input in a mutually recursive manner. Examples of such problems are the RNA Partition Function problem [10] (which is described in Appendix A), the RNA Energy Minimization problem [7] (which computes several folding scores for each substring of the input, corresponding to restricted types of foldings), and the CFG Parsing problem [20-22] (which computes, for every non-terminal symbol in the grammar and every sub-sentence of the input, a boolean value that indicates whether the sub-sentence can be derived in the grammar when starting the derivation from the non-terminal symbol). A common characteristic of all Inside VMT problems is that the computation of at least one type of an inside property requires a result of a vector multiplication operation, which is of similar structure to the multiplication described in the previous section for the RNA Base-Paring Maximization problem. In many occasions, it is also required to output a solution that corresponds to the computed property, e.g. a minimum energy secondary structure in the case of the RNA folding problem, or a maximum weight parse-tree in the case of the WCFG Parsing problem. These solutions can usually be obtained by applying a traceback procedure over the computed dynamic programming tables. As the running times of these traceback procedures are typically negligible with respect to the time needed for filling the values in the tables, we disregard this phase of the computation in the rest of the paper. The following definition describes the family of Inside VMT problems, which share common combinatorial characteristics and may be solved by a generic algorithm which is presented in Section 3.3. Definition 1 A problem is considered an Inside VMT problem if it fulfills the following requirements. 1. Instances of the problem are strings, and the goal of the problem is to compute for every substring s of an input string s, a series of inside properties . 2. Let s be a substring of some input string s. Let 1 ≤ k ≤ K, and let be a result of a vector multiplication of the form , for some 1 ≤ k', k" ≤ K. Assume that the following values are available: , all values for 1 ≤ k' ≤ K and s a strict substring of s, and all values for 1 ≤ k' < k. Then, can be computed in o(||s||) running time. 3. In the multiplication variant that is used for computing , the ⊕ operation is associative, and the domain of elements contains a zero element. In addition, there is a matrix multiplication algorithm for this multiplication variant, whose running time M(n) over two n × n matrices satisfies M(n) = o(n3). Intuitively, reflects an expression which examines all possible splits of sinto a prefix substring sand a suffix substring s(Figure 5). Each split corresponds to a term that should be considered when computing the property , where this term is defined to be the application of the ⊗ operator between the property of the prefix s, and the property of the suffix s(where ⊗ usually stands for +, ·, or ⋀). The combined value for all possible splits is then defined by applying the ⊕ operation (usually min/max, +, or ⋁) over these terms, in a sequential manner. The template allows examining , as well as additional values of the form , for strict substrings sof sand 1 ≤ k'
Figure 5

The examination of a split position .

The examination of a split position .

3.3 The Inside VMT algorithm

We next describe a generic algorithm, based on Valiant's algorithm [23], for solving problems sustaining the Inside VMT requirements. For simplicity, it is assumed that a single property βneeds to be computed for each substring sof the input string s. We later explain how to extend the presented algorithm to the more general cases of computing K inside properties for each substring. The new algorithm also maintains a matrix B as defined in Section 3.1. It is a divide-and-conquer recursive algorithm, where at each recursive call the algorithm computes the values in a sub-matrix Bof B (Figure 6). The actual computation of values of the form βis conducted at the base-cases of the recurrence, where the corresponding sub-matrix contains a single entry B. The main idea is that upon reaching this stage the term μwas already computed, and thus βcan be computed efficiently, as implied by item 2 of Definition 1. The accelerated computation of values of the form μis obtained by the application of fast matrix multiplication subroutines between sibling recursive calls of the algorithm. We now turn to describe this process in more details.
Figure 6

The recursion tree. Each node in the tree shows the state of the matrix B when the respective call to Compute-Inside-Sub-Matrix starts. The dotted cells are those that are computed during the call. Black and gray cells are cells whose values were already computed (black cells correspond to empty substrings). The algorithm starts by calling the recursive procedure over the complete matrix. Each visited sub-matrix is decomposed into two halves, which are computed recursively. The recursion visits the sub-matrices according to a pre-order scan on the tree depicted in the figure. Once the first among a pair of sibling recursive calls was concluded, the algorithm uses the new computed portion of data as an input to a fast matrix multiplication subroutine, which facilitate the computation of the second sibling.

The recursion tree. Each node in the tree shows the state of the matrix B when the respective call to Compute-Inside-Sub-Matrix starts. The dotted cells are those that are computed during the call. Black and gray cells are cells whose values were already computed (black cells correspond to empty substrings). The algorithm starts by calling the recursive procedure over the complete matrix. Each visited sub-matrix is decomposed into two halves, which are computed recursively. The recursion visits the sub-matrices according to a pre-order scan on the tree depicted in the figure. Once the first among a pair of sibling recursive calls was concluded, the algorithm uses the new computed portion of data as an input to a fast matrix multiplication subroutine, which facilitate the computation of the second sibling. At each stage of the run, each entry Beither contains the value β, or some intermediate result in the computation of μ. Note that only the upper triangle of B corresponds to valid substrings of the input. Nevertheless, our formulation handles all entries uniformly, implicitly ignoring values in entries Bwhen j < i. The following pre-condition is maintained at the beginning of the recursive call for computing B(Figure 7):
Figure 7

The pre-condition for computing . All values in B[, excluding B, are computed (light and dark grayed entries), and B= β⊗ β (= B⊗ B(the entries of Band B(are dark grayed).

The pre-condition for computing . All values in B[, excluding B, are computed (light and dark grayed entries), and B= β⊗ β (= B⊗ B(the entries of Band B(are dark grayed). 1. Each entry Bin B[contains the value β, except for entries in B. 2. Each entry Bin Bcontains the value ⊕(β⊗ β). In other words, B= β⊗ β(. Let n denote the length of s. Upon initialization, I = J = [0, n], and all values in B are set to ϕ. At this stage (I, J) is an empty interval, and so the pre-condition with respect to the complete matrix B is met. Now, consider a call to the algorithm with some pair of intervals I, J. If I = [i, i] and J = [j, j], then from the pre-condition, all values βwhich are required for the computation βof are computed and stored in B, and B= μ(Figure 4). Thus, according to the Inside VMT requirements, βcan be evaluated in o(||s||) running time, and be stored in B. Else, either |I| >1 or |J| >1 (or both), and the algorithm partitions Binto two sub-matrices of approximately equal sizes, and computes each part recursively. This partition is described next. In the case where |I| ≤ |J|, Bis partitioned vertically (Figure 8). Let J1 and J2 be two column intervals such that J = J1J2 and |J1| = ⌊|J|/2⌋ (Figure 8b). Since J and J1 start at the same index, (I, J) = (I, J1). Thus, from the pre-condition and Equation 2, . Therefore, the pre-condition with respect to the sub-matrix is met, and the algorithm computes this sub-matrix recursively. After is computed, the first part of the pre-condition with respect to is met, i.e. all necessary values for computing values in , except for those in itself, are computed and stored in B. In addition, at this stage . Let L be the interval such that (I, J2) = (I, J)L. L is contained in J1, where it can be verified that either L = J1 (if the last index in I is smaller than the first index in J, as in the example of Figure 8c), or L is an empty interval (in all other cases which occur along the recurrence). To meet the full pre-condition requirements with respect to I and J2, is updated using Equation 3 to be .
Figure 8

An exemplification of the vertical partition of . (a) The pre-condition requires that all values in B[, excluding B, are computed, and B= β⊗ β ((see Figure 7). (b) Bis partitioned vertically to and , where is computed recursively. (c) The pre-condition for computing is established, by updating to be (in this example L = J1, since I ends before J1 starts). Then, is computed recursively (not shown).

An exemplification of the vertical partition of . (a) The pre-condition requires that all values in B[, excluding B, are computed, and B= β⊗ β ((see Figure 7). (b) Bis partitioned vertically to and , where is computed recursively. (c) The pre-condition for computing is established, by updating to be (in this example L = J1, since I ends before J1 starts). Then, is computed recursively (not shown). Now, the pre-condition with respect to is established, and the algorithm computes recursively. In the case where |I| >|J|, Bis partitioned horizontally, in a symmetric manner to the vertical partition. The horizontal partition is depicted in Figure 9. The complete pseudo-code for the Inside VMT algorithm is given in Table 2.
Figure 9

An exemplification of the horizontal partition of . See Figure 8 for the symmetric description of the stages.

Table 2

The Inside VMT algorithm

Inside-VMT (s)
 1:    Allocate a matrix B of size ||s|| × ||s||, and initialize all entries in B with ϕ elements.
 2:    Call Compute-Inside-Sub-Matrix ([0, n], [0, n]), where n is the length of s.
 3:    return B
Compute-Inside-Sub-Matrix (I, J)
pre-condition: The values in B[I,J], [I,J], excluding the values in BI,J, are computed, and BI,J = βI,(I,J) β(I,J),J.
post-condition: B[I,J], [I,J] = β[I,J], [I,J].
 1:    if I = [i, i] and J = [j, j] then
 2:       If i j, compute βi,j (in o (||s||) running time) by querying computed values in B and the value μi,j which is stored in Bi,j. Update Bi,j βi,j.
 3:    else
 4:       if |I| ≤ |J| then
 5:          Let J1 and J2 be the two intervals such that J1J2 = J, and |J1| = ⌊|J|/2⌋.
 6:          Call Compute-Inside-Sub-Matrix (I, J1).
 7:          Let L be the interval such that (I, J)L = (I, J2).
 8:          Update BI,J2BI,J2(BI,LBL,J2).
 9:          Call Compute-Inside-Sub-Matrix (I, J2).
 10:       else
 11:          Let I1 and I2 be the two intervals such that I2I1 = I, and |I2| = ⌊|I|/2⌋.
 12:          Call Compute-Inside-Sub-Matrix (I1, J).
 13:          Let L be the interval such that L(I, J) = (I2, J).
 14:          Update BI2,J(BI2,LBL,J)BI2,J.
 15:          Call Compute-Inside-Sub-Matrix (I2, J).
 16:       end if
 17:    end if
An exemplification of the horizontal partition of . See Figure 8 for the symmetric description of the stages. The Inside VMT algorithm

3.3.1 Time complexity analysis for the Inside VMT algorithm

In order to analyze the running time of the presented algorithm, we count separately the time needed for computing the base-cases of the recurrence, and the time for non-base-cases. In the base-cases of the recurrence (lines 1-2 in Procedure Compute-Inside-Sub-Matrix, Table 2), |I| = |J| = 1, and the algorithm specifically computes a value of the form β. According to the VMT requirements, each such value is computed in o(||s||) running time. Since there are Θ(||s||2) such base-cases, the overall running time for their computation is o(||s||3). Next, we analyze the time needed for all other parts of the algorithm except for those dealing with the base-cases. For simplicity, assume that ||s|| = 2for some integer x. Then, due to the fact that at the beginning |I| = |J| = 2, it is easy to see that the recurrence encounters pairs of intervals I, J such that either |I| = |J| or |I| = 2|J|. Denote by T(r) and D(r) the time it takes to compute all recursive calls (except for the base-cases) initiated from a call in which |I| = |J| = r (exemplified in Figure 8) and |I| = 2|J| = r (exemplified in Figure 9), respectively. When |I| = |J| = r (lines 4-9 in Procedure Compute-Inside-Sub-Matrix, Table 2), the algorithm performs two recursive calls with sub-matrices of size , a matrix multiplication between an and an matrices, and a matrix addition of two matrices. Since the matrix multiplication can be implemented by performing two matrix multiplications (Equation 1), T (r) is given by When |I| = 2|J| = r (lines 10-15 in Procedure Compute-Inside-Sub-Matrix, Table 2), the algorithm performs two recursive calls with sub-matrices of size , a matrix multiplication between two matrices, and a matrix addition of two matrices. Thus, D(r) is given by Therefore, . By the master theorem [44], T(r) is given by • T(r) = Θ(r2logr), if M(r) = O(r2logr) for some k ≥ 0, and • , if for some ε >0, and for some constant d <1 and sufficiently large r. The running time of all operations except for the computations of base cases is thus T(||s||). In both cases listed above, T(||s||) = o (||s||3), and therefore the overall running time of the algorithm is sub-cubic running time with respect to the length of the input string. The currently best algorithms for the three standard multiplication variants described in Section 2.2 satisfy that M(r) = Ω(r2+), and imply that T(r) = Θ(M(r)). When this case holds, and the time complexity of computing the base-cases of the recurrence does not exceed M(||s||) (i.e. when the amortized running time for computing each one of the Θ(||s||2) base cases is ), we say that the problem sustains the standard VMT settings. The running time of the VMT algorithm over such problems is thus Θ (M(||s||)). All realistic inside VMT problems familiar to the authors sustain the standard VMT settings.

3.3.2 Extension to the case where several inside properties are computed

We next describe the modification to the algorithm for the general case where the goal is to compute a series of inside property-sets β1, β2, ..., β(see Appendix A for an example of such a problem). The algorithm maintains a series of matrices B1, B2, ..., B, where Bcorresponds to the inside property-set β. Each recursive call to the algorithm with a pair of intervals I, J computes the series of sub-matrices . The pre-condition at each stage is: 1. For all 1 ≤ k ≤ K, all values in are computed, excluding the values in , 2. If a result of a vector multiplication of the form is required for the computation of , then . The algorithm presented in this section extends to handling this case in a natural way, where the modification is that now the matrix multiplications may occur between sub-matrices taken from different matrices, rather than from a single matrix. The only delicate aspect here is that for the base case of the recurrence, when I = [i, i] and J = [j, j], the algorithm needs to compute the values in the corresponding entries in a sequential order , since it is possible that the computation of a property requires the availability of a value of the form for some k' < k. Since K is a constant which is independent of the length on the input string, it is clear that the running time for this extension remains the same as for the case of a single inside value-set. The following Theorem summarizes our main results with respect to Inside VMT problems. Theorem 1 For every Inside VMT problem there is an algorithm whose running time over an instance s is o(||s||3). When the problem sustains the standard VMT settings, the running time of the algorithm is Θ(M(||s||)), where M(n) is the running time of the corresponding matrix multiplication algorithm over two n × n matrices.

4 Outside VMT

In this section we discuss how to solve another class of problems, denoted Outside VMT problems, by modifying the algorithm presented in the previous section. Similarly to Inside VMT problems, the goal of Outside VMT problems is to compute sets of outside properties α1, α2, ..., αcorresponding to some input string (see notations in Section 2.3). Examples for problems which require outside properties computation and adhere to the VMT requirements are the RNA Base Pair Binding Probabilities problem [10] (described in Appendix A) and the WCFG Inside-Outside problem [43]. In both problems, the computation of outside properties requires a set of pre-computed inside properties, where these inside properties can be computed with the Inside VMT algorithm. In such cases, we call the problems Inside-Outside VMT problems. The following definition describes the family of Outside VMT problems. Definition 2 A problem is considered an Outside VMT problem if it fulfills the following requirements. 1. Instances of the problem are strings, and the goal of the problem is to compute for every sub-instance of an input string s, a series of outside properties . 2. Let be a sub-instance of some input string s. Let 1 ≤ k ≤ K, and let be a result of a vector multiplication of the form or of the form , for some 1 ≤ k' ≤ K and a set of pre-computed inside properties β, all values for 1 ≤ k' ≤ K and sa strict substring of s, and all values for 1 ≤ k' < k. Then, can be computed in o (||s||) running time. 3. In the multiplication variant that is used for computing , the ⊕ operation is associative, and the domain of elements contains a zero element. In addition, there is a matrix multiplication algorithm for this multiplication variant, which running time M(n) over two n × n matrices satisfies M(n) = o(n3). Here, for the case where , the value reflects an expression which examines all possible splits of into a sub-instance of the form , where q < i, and a sub-instance of the form s(Figure 10a). Each split induces a term which is obtained by applying the ⊗ operation between a property of sand a property of . Then, combines the values of all such terms by applying the ⊕ operator. Symmetrically, when , reflects a value corresponding to the examination of all splits of into a sub-instance of the form , where q > j, and a sub-instance of the form s(Figure 10b).
Figure 10

Outside value computation.

Outside value computation. We now turn to describe a generic recursive algorithm for Outside VMT problems. For simplicity, we consider the case of a problem whose goal is to compute a single set of outside properties α, given a single pre-computed set of inside properties β. As for the Inside VMT algorithm, it is simple to extend the presented algorithm to the case where the goal is to compute a series of outside properties for every sub-instance of the input. For an input string s of length n, the algorithm maintains a matrix A of size ||s|| × ||s||, corresponding to the required output matrix α. In order to compute a property α, the availability of values of the form α, such that sis a strict substring of s, is required. In terms of the matrix A, this means that when computing A, all entries in the sub-matrix A[0,, excluding the entry Aitself, need to be computed (Figure 11a).
Figure 11

The base case of the Outside VMT algorithm. (a) An illustration of the matrix A upon computing A. (b) An illustration of the pre-computed matrix β. All required values of the form αfor computing αhave already been computed in the sub-matrix A[0,, excluding the entry Aitself. μis obtained either by the multiplication (β[0,)⊗ A[0,(the multiplication of the transposed striped dark gray vector in β with the striped dark gray vector in A), or by the multiplication A⊗ (β)(the multiplication of the non-striped dark gray vector in A with the transposed non-striped dark gray vector in β).

The base case of the Outside VMT algorithm. (a) An illustration of the matrix A upon computing A. (b) An illustration of the pre-computed matrix β. All required values of the form αfor computing αhave already been computed in the sub-matrix A[0,, excluding the entry Aitself. μis obtained either by the multiplication (β[0,)⊗ A[0,(the multiplication of the transposed striped dark gray vector in β with the striped dark gray vector in A), or by the multiplication A⊗ (β)(the multiplication of the non-striped dark gray vector in A with the transposed non-striped dark gray vector in β). At each recursive call, the algorithm computes the values in a sub-matrix of A. The following pre-condition is maintained when the algorithm is called over a sub-matrix A(Figure 12):
Figure 12

The pre-condition of the Outside VMT algorithm. (a) An illustration of the matrix A upon computing A(dotted entries). (b) An illustration of the pre-computed matrix β. The pre-condition requires that all entries in the sub-matrix A[0,, excluding A, are computed (dark and light gray entries). In addition, Ais either the result of the matrix multiplication (β[0,)⊗ α[0,(the multiplication of the transposed striped dark gray matrix in β with the striped dark gray matrix in A), or the multiplication α⊗ (β)(the multiplication of the non-striped dark gray matrix in A with the transposed non-striped dark gray matrix in β).

The pre-condition of the Outside VMT algorithm. (a) An illustration of the matrix A upon computing A(dotted entries). (b) An illustration of the pre-computed matrix β. The pre-condition requires that all entries in the sub-matrix A[0,, excluding A, are computed (dark and light gray entries). In addition, Ais either the result of the matrix multiplication (β[0,)⊗ α[0,(the multiplication of the transposed striped dark gray matrix in β with the striped dark gray matrix in A), or the multiplication α⊗ (β)(the multiplication of the non-striped dark gray matrix in A with the transposed non-striped dark gray matrix in β). 1. Each entry Ain A[0,contains the value α, except for entries in A. 2. If the computation of αrequires the result of a vector multiplication of the form μ= ⊕(β⊗ α), then A= (β[0,)⊗ α[0,. Else, if the computation of αrequires the result of a vector multiplication of the form μ= ⊕(α⊗ β), then A= α⊗ (β). The pre-condition implies that when I = [i, i] and J = [j, j], all necessary values for computing αin o(||s||) running time are available, and thus αcan be efficiently computed and stored in A. When |I| >1 or |J| >1, the algorithm follows a similar strategy as that of the Inside VMT algorithm, by partitioning the matrix into two parts, and computing each part recursively. The vertical and horizontal partitions are illustrated in Figure 13 and 14, respectively. The pseudo-code for the complete Outside VMT algorithm is given in Table 3. Similar running time analysis as that applied in the case of the Inside VMT algorithm can be shown, yielding the result stated in Theorem 2.
Figure 13

The vertical decomposition in the Outside VMT algorithm, for the case where |. (a) Asustains the pre-condition (see Figure 12 for notations). (b) Ais partitioned vertically to and , where is computed recursively. (c) If μis of the form ⊕ (α⊗ β), then the pre-condition for computing is established, by updating to be (in this example L = J1, since I ends before J1 starts. The corresponding sub-matrix of β is not shown). In the case where μ= ⊕(β⊗ α), the pre-condition is met without any need for performing a matrix multiplication. Then, is computed recursively (not shown).

Figure 14

The horizontal decomposition in the Outside VMT algorithm, for the case where |. (a) Asustains the pre-condition (see Figure 12 for notations). (b) Ais partitioned horizontally to and , where is computed recursively. (c) If μis of the form ⊕(β⊗ α), then the pre-condition for computing is established, by updating to be (in this example L = I1, since I2 ends before J starts. The corresponding sub-matrix of β is not shown). In the case where μ= ⊕(α⊗ β), the pre-condition is met without any need for performing a matrix multiplication. Then, is computed recursively (not shown).

Table 3

The outside VMT algorithm

Outside-VMT (s, β)
 1:    Allocate a matrix A of size ||s|| × ||s||, and initialize all entries in A with ϕ elements.
 2:    Call Compute-Outside-Sub-Matrix ([0, n], [0, n]), where n is the length of s.
 3:    return A
Compute-Outside-Sub-Matrix (I, J)
pre-condition: The values in A[0,I], [J,n], excluding the values in AI,J, are computed.
   If μi,j = ⊕q∈[0,i) (βq,i αq,j), then AI,J = (β[0,I),I)T α[0,I),J. Else, if μi,j = ⊕q∈(j,n] (αi,q βj,q), then AI,J = αI,(J,n] ⊗ (βJ,(J,n])T.
post-condition: A[0,I], [J,n] = α[0,I], [J,n].
 1:    if I = [i, i] and J = [j, j] then
 2:       If i j, compute αi,j (in o (||s||) running time) by querying computed values in A and the value μi,j which is stored in Ai,j. Update Ai,j αi,j.
 3:    else
 4:       if |I| ≤ |J| then
 5:          Let J1 and J2 be the two intervals such that J2J1 = J, and |J2| = ⌊|J|/2⌋.
 6:          Call Compute-Outside-Sub-Matrix (I, J1).
 7:          if μi,j is of the form ⊕q∈(j,n] (αi,q βj,q) then
 8:             Let L be the interval such that L(J, n] = (J2, n].
 9:             Update AI,J2AI,L(βJ2,L)TAI,J2.
 10:          end if
 11:          Call Compute-Outside-Sub-Matrix (I, J2).
 12:       else
 13:          Let I1 and I2 be the two intervals such that I1I2 = I, and |I1| = ⌊|I|/2⌋.
 14:          Call Compute-Outside-Sub-Matrix (I1, J).
 15:          if μi,j is of the form ⊕q∈[0,i) (βq,i αq,j) then
 16:             Let L be the interval such that [0, I)L = [0, I2).
 17:             Update AI2,JAI2,J(βL,I2)TAL,J.
 18:          end if
 19:          Call Compute-Outside-Sub-Matrix (I2, J).
 20:       end if
 21:    end if
The vertical decomposition in the Outside VMT algorithm, for the case where |. (a) Asustains the pre-condition (see Figure 12 for notations). (b) Ais partitioned vertically to and , where is computed recursively. (c) If μis of the form ⊕ (α⊗ β), then the pre-condition for computing is established, by updating to be (in this example L = J1, since I ends before J1 starts. The corresponding sub-matrix of β is not shown). In the case where μ= ⊕(β⊗ α), the pre-condition is met without any need for performing a matrix multiplication. Then, is computed recursively (not shown). The horizontal decomposition in the Outside VMT algorithm, for the case where |. (a) Asustains the pre-condition (see Figure 12 for notations). (b) Ais partitioned horizontally to and , where is computed recursively. (c) If μis of the form ⊕(β⊗ α), then the pre-condition for computing is established, by updating to be (in this example L = I1, since I2 ends before J starts. The corresponding sub-matrix of β is not shown). In the case where μ= ⊕(α⊗ β), the pre-condition is met without any need for performing a matrix multiplication. Then, is computed recursively (not shown). The outside VMT algorithm Theorem 2 For every Outside VMT problem there is an algorithm whose running time over an instance s is o (||s||3). When the problem sustains the standard VMT settings, the running time of the algorithm is Θ(M(||s||)), where M(n) is the running time of the corresponding matrix multiplication algorithm over two n × n matrices.

5 Multiple String VMT

In this section we describe another extension to the VMT framework, intended for problems for which the instance is a set of strings, rather than a single string. Examples of such problems are the RNA Simultaneous Alignment and Folding problem [15,37], which is described in details in Appendix B, and the RNA-RNA Interaction problem [9]. Additional problems which exhibit a slight divergence from the presented template, such as the RNA-RNA Interaction Partition Function problem [12] and the RNA Sequence to Structured-Sequence Alignment problem [13], can be solved in similar manners. In order to define the Multiple String VMT variant in a general manner, we first give some related notation. An instance of a Multiple String VMT problem is a set of strings S = (s0, s1, ..., s), where the length of a string s∈ S is denoted by n. A position in S is a set of indices X = (i0, i1, ..., i), where each index i∈ X is in the range 0 ≤ i≤ n. The number of different positions in S is denoted by . Let X = (i0, i1, ..., i) and Y = (j0, j1, ..., j) be two positions in S. Say that X ≤ Y if i≤ jfor every 0 ≤ p < m, and say that X < Y if X ≤ Y and X ≠ Y. When X ≤ Y, denote by Sthe sub-instance of S (see Figure 15a). Say that Sis a strict sub-instance of Sif X ≤ X' ≤ Y' ≤ Y, and S≠ S.
Figure 15

Multiple String VMT. (a) An example of a Multiple String VMT instance, with three strings. A sub-instance Sconsists of three substrings (where X = {i0, i1, i2} and Y = {j0, j1, j2}). (b) Here, since j1 < i1 we have that X ≰ Y, and thus Sdoes not correspond to a valid sub-instance. (c) A valid split of the sub-instance is obtained by splitting each one of the corresponding substrings into a prefix and a suffix .

Multiple String VMT. (a) An example of a Multiple String VMT instance, with three strings. A sub-instance Sconsists of three substrings (where X = {i0, i1, i2} and Y = {j0, j1, j2}). (b) Here, since j1 < i1 we have that X ≰ Y, and thus Sdoes not correspond to a valid sub-instance. (c) A valid split of the sub-instance is obtained by splitting each one of the corresponding substrings into a prefix and a suffix . The notation X ≰ Y is used to indicate that it is not true that X ≤ Y. Here, the relation '≤' is not a linear relation, thus X ≰ Y does not necessarily imply that Y < X. In the case where X ≰ Y, we say that Sdoes not correspond to a valid sub-instance (Figure 15b). The notations and N will be used in order to denote the first position (0, 0, ..., 0) and the last position (n0, n1, ..., n) in S, respectively. The notations which were used previously for intervals, are extended as follows: [X, Y] denotes the set of all positions Q such that X ≤ Q ≤ Y, (X, Y) denotes the set of all positions Q such that X < Q < Y, [X, Y) denotes the set of all positions Q such that X ≤ Q < Y, and (X, Y] denotes the set of all positions Q such that X < Q ≤ Y. Note that while previously these notations referred to intervals with sequential order defined over their elements, now the notations correspond to sets, where we assume that the order of elements in a set is unspecified. Inside and outside properties with respect to multiple string instances are defined in a similar way as for a single string: An inside property βis a property that depends only on the sub-instance S, where an outside property αdepends on the residual sub-instance of S, after excluding from each string in S the corresponding substring in S. In what follows, we define Multiple String Inside VMT problems, and show how to adopt the Inside VMT algorithm for such problems. The "outside" variant can be formulated and solved in a similar manner. Definition 3 A problem is considered a Multiple String Inside VMT problem if it fulfills the following requirements. 1. Instances of the problem are sets of strings, and the goal of the problem is to compute for every sub-instance Sof an input instance S, a series of inside properties . 2. Let S be a sub-instance of some input instance S. Let 1 ≤ k ≤ K, and let be a value of the form , for some 1 ≤ k', k" ≤ K. Assume that the following values are available: , all values for 1 ≤ k' ≤ K and S a strict sub-instance of S, and all values for 1 ≤ k' < k. Then, can be computed in o (||S||) running time. 3. In the multiplication variant that is used for computing , the ⊕ operation is associative and commutative, and the domain of elements contains a zero element. In addition, there is a matrix multiplication algorithm for this multiplication variant, which running time M(n) over two n × n matrices satisfies M(n) = o(n3). Note that here there is an additional requirement with respect to the single string variant, that the ⊕ operator is commutative. This requirement was added, since while in the single string variant split positions in the interval (i, j) could have been examined in a sequential order, and the (single string) Inside VMT algorithm retains this order when evaluating , here there is no such natural sequential order defined over the positions in the set (X, Y). The ⊕ commutativity requirement is met in all standard variants of matrix multiplication, and thus does not pose a significant restriction in practice. Consider an instance S = (s0, s1, ..., s) for a Multiple String Inside VMT problem, and the simple case where a single property set β needs to be computed (where β corresponds to all inside properties of the form β). Again, we compute the elements of β in a square matrix B of size ||S|| × ||S||, and show that values of the form μcorrespond to results of vector multiplications within this matrix. For simplicity, assume that all string s∈ S are of the same length n, and thus ||S|| = (n + 1)(this assumption may be easily relaxed). Define a one-to-one and onto mapping h between positions in S and indices in the interval [0, ||S||), where for a position X = (i0, i1, ..., i) in S, . Let h-1 denote the inverse mapping of h, i.e. h(X) = i ⇔ h-1(i) = X. Observe that X ≤ Y implies that h(X) ≤ h(Y), though the opposite is not necessary true (i.e. it is possible that i ≤ j and yet h-1(i) ≰ h-1(j), as in the example in Figure 15b). Each value of the form βwill be computed and stored in a corresponding entry B, where i = h(X) and j = h(Y). Entries of B which do not correspond to valid sub-instances of S, i.e. entries Bsuch that h-1(i) ≰ h-1(j), will hold the value ϕ. The matrix B is computed by applying the Inside VMT algorithm (Table 2) with a simple modification: in the base-cases of the recurrence (line 2 in Procedure Compute-Inside-Sub-Matrix, Table 2), the condition for computing the entry Bis that h-1(i) ≤ h-1(j) rather than i ≤ j. If h-1(i) ≤ h-1(j), the property is computed and stored in this entry, and otherwise the entry retains its initial value ϕ. In order to prove the correctness of the algorithm, we only need to show that all necessary values for computing a property βare available to the algorithm when the base-case of computing Bfor i = h(X) and j = h(Y) is reached. Due to the nature of the mapping h, all properties βfor strict sub-instances Sof Scorrespond to entries Bsuch that i' = h(X') and j' = h(Y') and i', j' ∈ [i, j]. Therefore, all inside properties of strict sub-instances of Sare available according to the pre-condition. In addition, at this stage Bcontains the value B× B(. Note that for every Q ∈ (X, Y), q = h(Q) ∈ (i, j) (Figure 16a), and thus β⊗ β= B⊗ B. On the other hand, every q ∈ (i, j) such that Q = h-1(q) ∉ (X, Y) sustains that either X ≰ Q or Q ≰ Y (Figure 16b), and therefore either B= ϕ or B= ϕ, and B⊗ B= ϕ. Thus, B× B(= ⊕(β⊗ β) = μ, and according to the Multiple String VMT requirements, the algorithm can compute βin o(||S||) running time.
Figure 16

The . The notations X, Y, and Q, refer to the positions (i1, i2, i3), (j1, j2, j3) and (q1, q2, q3) which are illustrated in the figure, respectively. (a) A position Q ∈ (X, Y) is mapped to an index q ∈ (i, j), where i = h(X) and j = h(Y). (b) Some indices q ∈ (i, j) correspond to positions Q = h-1(q) such that Q ∉ (X, Y). This implies that either Sor Sare not valid sub-instances of S.

The . The notations X, Y, and Q, refer to the positions (i1, i2, i3), (j1, j2, j3) and (q1, q2, q3) which are illustrated in the figure, respectively. (a) A position Q ∈ (X, Y) is mapped to an index q ∈ (i, j), where i = h(X) and j = h(Y). (b) Some indices q ∈ (i, j) correspond to positions Q = h-1(q) such that Q ∉ (X, Y). This implies that either Sor Sare not valid sub-instances of S. The following theorem summarizes the main result of this section. Theorem 3 For every Multiple String (Inside or Outside) VMT problem there is an algorithm whose running time over an instance S is o (||S||3). When the problem sustains the standard VMT settings, the running time of the algorithm is Θ (M(||S||)), where M(n) is the running time of the corresponding matrix multiplication algorithm over two n × n matrices.

6 Concluding remarks

This paper presents a simplification and a generalization of Valiant's technique, which speeds up a family of algorithms by incorporating fast matrix multiplication procedures. We suggest generic templates that identify problems for which the approach is applicable, where these templates are based on general recursive properties of the problems, rather than on their specific algorithms. Generic algorithms are described for solving all problems sustaining these templates. The presented framework yields new worst case running time bounds for a family of important problems. The examples given here come from the fields of RNA secondary structure prediction and CFG Parsing. Recently, we have shown that this technique also applies for the Edit Distance with Duplication and Contraction problem [45], suggesting that it is possible that more problems from other domains can be similarly accelerated. While previous works describe other practical acceleration techniques for some of the mentioned problems [14,25,28,32-38], Valiant's technique, along with the Four Russians technique [28,30,31], are the only two techniques which currently allow to reduce the theoretical asymptotic worst case running times of the standard algorithms, without compromising the correctness of the computations. The usage of the Four Russians technique can be viewed as a special case of using Valiant's technique. Essentially, the Four Russians technique enumerates solutions for small computations, stores these solutions in lookup tables, and then accelerates bigger computations by replacing the execution of sub-computations with queries to the lookup tables. In the original paper [29], this technique was applied to obtain an O(log n) improvement factor for Boolean Matrix Multiplication. This approach was modified in [30] in order to accelerate Min/Max-Plus Multiplication, for integer matrices in which the difference between adjacent cells are taken from a finite interval of integers. While in [30] this technique was used ad hoc for accelerating RNA folding, it is possible to decouple the description of the fast matrix multiplication technique from the RNA folding algorithm, and present the algorithm of [30] in the same framework presented here. The latter special matrix multiplication variant was further accelerated in [45] to running time, implying that RNA folding under discrete scoring schemes (e.g. [6]) can be computed in time, instead of in time as implied by the fastest Min/Max-Plus Multiplication algorithm for general matrices [27]. Many of the current acceleration techniques for RNA and CFG related algorithms are based on sparsification, and are applicable only to optimization problems. Another important advantage of Valiant's technique is that it is the only technique which is currently known to reduce the running times of algorithms for the non-optimization problem variants, such as RNA Partition Function related problems [10,12] and the WCFG Inside-Outside algorithm [43], in which the goals are to compute the sum of scores of all solutions of the input, instead of computing the score of an optimal solution. Our presentation of the algorithm also improves upon previous descriptions in additional aspects. In Valiant's original description there was some intersection between the inputs of recursive calls in different branches of the recurrence tree, where portions of the data were re-computed more than once. Following Rytter's description of the algorithm [42], our formulation applies the recurrence on mutually-exclusive regions of the data, in a classic divide-and-conquer fashion. The formulation is relatively explicit, avoiding reductions to problems such as transitive closure of matrix multiplication [23,26] or shortest paths on lattice graphs [42]. The requirements specified here for VMT problems are less strict than requirements presented in previous works for such problems. Using the terminology of this work, additional requirements in [23] for Inside VMT problems are that the ⊕ operation of the multiplication is commutative, and that the ⊕ operation distributes over ⊕. Our explicit formulation of the algorithm makes it easy to observe that none of the operations of the presented algorithm requires the assumption that ⊕ distributes over ⊕. In addition, it can be seen that the ⊕ operation is always applied in a left-to-right order (for non-Multiple String VMT problems), thus the computation is correct even if ⊕ is not commutative. In [42], it was required that the algebraic structure would be a semiring, i.e. adding to the requirements of [23] an additional requirement that also contains an identity element 1 with respect to the ⊕ operation. Again, the algorithms presented here do not require that such a property be obeyed. The time complexities of VMT algorithms are dictated by the time complexities of matrix multiplication algorithms. As matrix multiplication variants are essential operations in many computational problems, much work has been done to improve both the theoretical and the practical running times of these operations, including many recent achievements [24,27,40,41,46-50]. Due to its importance, it is expected that even further improvements in this domain will be developed in the future, allowing faster implementations of VMT algorithms. Theoretical sequential sub-cubic matrix multiplication algorithms (e.g. [24]) are usually considered impractical for realistic matrix sizes. However, practical, hardware-based fast computations of matrix multiplications are gaining popularity within recent years [40,41], due the highly parallelized nature of such computations and the availability of new technologies that exploit this parallelism. Such technologies were previously used for some related problems [51,52], yet there is an intrinsic advantage for its utilization via the VMT framework. While optimizing the code for each specific problem and each specific hardware requires special expertise, the VMT framework conveniently allows differing the bottleneck part of the computation to the execution of matrix multiplication subroutines, and thus off-the-shelf, hardware tailored optimized solutions can be easily integrated into all VMT problems, instead of being developed separately for each problem.

Competing interests

The authors declare that they have no competing interests.

Authors' contributions

SZ developed and formulated the algorithms, template definitions, and examples. MZU and DT mentored the research, contributed in writing parts of the manuscript, and were active in revising and preparing the final manuscript. All authors read and approved the final manuscript.

Appendix

A RNA Partition Function and Base Pair Binding Probabilities

The following example is a simplified formalization of the RNA Partition Function and Base Pair Binding Probabilities problem [10]. The example demonstrates the Inside-Outside VMT settings, with respect to the Dot Product variant. This problem requires the computation of several inside and outside properties for every sub-instance of the input. As in Section 3.1, we consider the RNA folding domain. Here, instead of looking for an optimal folding of an input RNA string s, we attempt to answer the following questions: 1. For a given folding F of s, what is the probability that s folds spontaneously to F? 2. For every pair of indices a and b, what is the probability that a spontaneous folding of s contains the base-pair a • b? The Partition Function physical model allows answering these questions. When applied to RNA folding, it is assumed that for every folding F of s, it is possible to assign a weight , which is proportional to the probability that s spontaneously folds according to F. Here, E(F) is the energy of F, kis the Boltzmann constant, and T is the temperature. Then, the probability that s folds according to F is given by , where the normalizing factor Z is called the Partition Function and is given by Note that a naive computation of the RNA folding partition function would require the examination of all possible foldings of the input instance, where the number of such foldings grows exponentially with the length of the instance [53]. In [10], McCaskill showed how to efficiently compute the partition function for RNA folding in Θ(n3) running time. In addition, he presented a variant that allows the computation of base-pairing probabilities for every given pair of indices in the RNA string. We next present a simplified version of McCaskill's computation. For the sake of clarity of presentation, assume that w(F) = e|, where |F| is the number of base-pairs in F, and assume that non-complementary base-pairs are not allowed to occur. This simplification of the weight function allows focusing on the essential properties of the computation, avoiding a tedious notation. For the "inside" phase of the computation, define two sets of inside properties β1 and β2 with respect to an input RNA string s. The property is the partition function of the substring s, i.e. the sum of weights of all possible foldings of s. The property is the sum of weights of all possible foldings of sthat contain the base-pair i • (j - 1). For j ≤ i + 1, the only possible folding of sis the empty folding, and thus (since there are no foldings of sthat contain the base-pair i • (j - 1)) and (since the weight of the empty folding is e0 = 1). For j > i + 1, and can be recursively computed as follows. First, consider the computation of . Observe that if sand sare not complementary bases, then there is no folding of sthat contains i • (j - 1), and thus . Otherwise, every folding F of sthat contains i • (j - 1) is obtained by adding the base-pair i • (j - 1) to a unique folding F' of s, where w(F) = e|= e|= e · e|. Therefore, is given by where δ= e if sand sare complementary bases, and otherwise δ= 0. Now, consider the computation of . Every folding F of sin which j - 1 is paired to some index q, i < q < j - 1, is obtained by combining a folding F' of the prefix swith a folding F" of the suffix s, where F" contains the base-pair q • (j - 1). In addition w(F) = e|= e|= e|· e|= w(F') · w(F"). Thus, the sum of weights of all possible different foldings of this form, denoted by , is given by Since , can be written as . In addition to foldings of the above form, the set of foldings of scontains foldings in which j - 1 is unpaired, and foldings in which j - 1 is paired to i. The set of foldings of sin which j - 1 is unpaired is exactly the set of foldings of s, and their sum of weights is given by . The sum of weights of all foldings in which j - 1 is paired to i is given by , and thus The computation of the inside property sets β1 and β2 abides by the Inside VMT requirements of Definition 1 with respect to the Dot Product, and thus may be computed by the Inside VMT algorithm. The partition function of the input RNA string s is given by . The second phase of McCaskill's algorithm computes for every pair of indices a and b in s, the probability that a spontaneous folding of s contains the base-pair a • b. According to the partition function model, this probability equals to the sum of weights of foldings of s which contain a • b, divided by Z. Therefore, there is a need to compute values that correspond to sums of weights of foldings which contain specific base-pairs. We will denote by γthe sum of weights of foldings of s which contain the base pair i • (j - 1). The probability of a base-pair a • b is thus . In order to compute values of the form γ, we define the following outside property sets α1, α2, α3 and α4. A value of the form reflects the sum of weights of all foldings of that contain the base-pair (i - 1) • j. A value of the form reflects the sum of weights of all foldings of that contain a base-pair of the form (q - 1) • j, for some index q ∈ [0, i). A value of the form reflects the sum of weights of all foldings of that contain a base-pair of the form j • (q - 1), for some index q ∈ (j, n], and a value of the form reflects the partition function of , i.e. the sum of weights of all foldings of . Every folding F for s in which the base-pair i • (j - 1) is included can be decomposed into two foldings F' and F", where F' is a folding of sthat contains i • (j - 1), and F" is a folding of . Similarly as above, this observation implies that the sum of weights of all foldings of s that contain i • (j - 1) is It is now left to show how to compute values of the form . This computation is showed next, via a mutually recursive formulation that also computes values in the sets α1, α2, and α3. Every folding of that contains (i - 1) • j is obtained by adding the base-pair (i - 1) • j to a unique folding of . As before, this implies that Every folding of that contains a base-pair of the form (q - 1) • j, for some q ∈ [0, i), can be decomposed into two foldings F' and F", where F' is a folding of s, and F" is a folding of that contains (q - 1) • j. Again, this implies that the sum of weights of all such foldings is given by Similarly, it can be shown that Finally, consider the computation of . Note that the set of all foldings of in which j is unpaired is exactly the set of all foldings of , and thus the sum of weights of all such foldings is . In every other folding of , j is either paired to i - 1, or to some index q - 1 such that q ∈ [0, i) or q ∈ (j, n]. Therefore, It can now be verified that the computation of the property sets α1, α2, α3, and α4 sustains all requirements from an Outside VMT problem as listed in Definition 2, therefore the Base Pair Binding Probabilities problem may be computed by the Outside-VMT algorithm.

B RNA Simultaneous Alignment and Folding

The RNA Simultaneous Alignment and Folding (SAF) problem is an example of a Multiple String VMT problem, defined by Sankoff [15]. Similarly to the classical sequence alignment problem, the goal of the SAF problem is to find an alignment of several RNA strings, and in addition to find a common folding for the aligned segments of the strings. The score of a given alignment with folding takes into account both standard alignment elements such as character matchings, substitutions and indels, as well as the folding score. For clarity, our formulation assumes a simplified scoring scheme. We use the notation of Section 5 regarding multiple string instances, positions, and sub-instances. Let Q = (q0, q1, ..., q) be a position in a multiple string instance S = (s0, s1, ..., s). Say that a position Q' = (q'0, q'1, ..., q') in S is a local increment of Q if Q < Q', and for every 0 ≤ p < m, q'≤ q+ 1. That is, a local increment of a position increases the value of each one of the sequence indices of the position by at most 1, where at least one of the indices strictly increases. Symmetrically, say that in the above case Q is a local decrement of Q'. The position sets inc(Q) and dec(Q) denote the set of all local increments and the set of all local decrements of Q, respectively. The size of each one of these sets is O(2). An SAF instance S is a set of RNA strings S = (s0, s1, ..., s). An alignment A of S is a set of strings A = (a0, a1, ..., a) over the alphabet {A, C, G, U, -} ('-' is called the "gap" character), satisfying that: • All strings in A are of the same length. • For every 0 ≤ p < m, the string which is obtained by removing from aall gap characters is exactly the string s. Denote by |A| the length of each one of the strings in A, and by the rth column of A. Observe that an alignment column Acorresponds to a sub-instance of the form S, where Q' is a local increment of Q. The position Q = (q0, q1, ..., q) in S satisfies that for every 0 ≤ p < m, qis the number of non-gap characters in . The position Q' = (q'0, q'1, ..., q') satisfies that for every 0 ≤ p < m, q'= qif is a gap, and otherwise q'= q+1 (see Figure 17).
Figure 17

An SAF instance, and a corresponding alignment with folding. (a) An SAF instance S, composed of three RNA strings s0, s1, and s2. (b) A possible alignment with folding (A, F) of S, where |A| = 17, and F = {1 • 4, 7 • 15, 9 • 12}. The alignment column A10 is marked. This column corresponds to the sub-instance S, for Q = (7, 7, 8) and Q' = (8, 7, 9).

An SAF instance, and a corresponding alignment with folding. (a) An SAF instance S, composed of three RNA strings s0, s1, and s2. (b) A possible alignment with folding (A, F) of S, where |A| = 17, and F = {1 • 4, 7 • 15, 9 • 12}. The alignment column A10 is marked. This column corresponds to the sub-instance S, for Q = (7, 7, 8) and Q' = (8, 7, 9). A folding F of an alignment A is defined similarly to a folding of a single RNA string, except for the fact that now each pair a • b in F represents a column-pair in an alignment rather than a base-pair in an RNA string. Call a pair (A, F), where A is an alignment of an SAF instance S and F is a folding of A, an alignment with folding of S (Figure 17b). Define the score of an alignment with folding (A, F) to be Here, ρ is a column aligning score function, and τ is a column-pair aligning score function. ρ (A) reflects the alignment quality of the rth column in A, giving high scores for aligning nucleotides of the same type and penalizing alignment of nucleotides of different types or aligning nucleotides against gaps. τ(A, A) reflects the benefit from forming a base-pair in each one of the RNA strings in S between the bases corresponding to columns Aand Aof the alignment (if gaps or non-complementary bases are present in these columns, it may induce a score penalty). In addition, compensatory mutations in these columns may also increase the value of τ(A, A) (thus it may compensate for some penalties taken into account in the computation of ρ(A) and ρ(A)). We assume that both scoring functions ρ and τ can be computed in O(m) running time. In addition, we use as arguments for ρ and τ sub-instances of the form S, where Q' is a local increment of Q. In such cases, Scorresponds to a unique alignment column, where ρ and τ are computed with respect to this column. The goal of the SAF problem is to find the maximum score of an alignment with folding for a given SAF instance S. In order to compute this value, we define a set β of inside properties with respect to S, where βis the maximum score of an alignment with folding of S. Similarly to single RNA string folding (Section 3.1), we think of two kinds of alignments with foldings for the sub-instance S: type I are alignments with foldings in which the first and last alignment columns are paired to each other, and type II are alignments with foldings in which the first and last alignment columns are not paired to each other. Consider an alignment with folding (A, F) of type I. Let Adenote the first column in A, and Athe the last column in A. Thus, Acorresponds to some sub-instance S, where X' is a local increment of X, and similarly Acorresponds to some sub-instance S, where Y' is a local decrement of Y. Since a • b ∈ F, the alignment with folding (A, F) is obtained by modifying an alignment with folding (A', F') for S, where A is obtained by concatenating Aand Aat the beginning and ending of A', respectively, and F = {a • b} ∪ F' (Figure 18). The score of (A, F) is given by
Figure 18

An alignment with folding of type . The alignment with folding (A, F) corresponds to the sub-instance Sof the instance S presented in Figure 17a, where X = (5, 5, 5) and Y = (12, 10, 14). (A, F) is obtained by modifying an alignment with folding (A', F') for the sub-instance S, where X' = (6, 6, 6) and Y' = (11, 9, 13) (marked with a blue rectangle). The modification includes the addition of the two alignment columns A7 and A15 to the alignment, and the column-pair 7 • 15 to the folding.

An alignment with folding of type . The alignment with folding (A, F) corresponds to the sub-instance Sof the instance S presented in Figure 17a, where X = (5, 5, 5) and Y = (12, 10, 14). (A, F) is obtained by modifying an alignment with folding (A', F') for the sub-instance S, where X' = (6, 6, 6) and Y' = (11, 9, 13) (marked with a blue rectangle). The modification includes the addition of the two alignment columns A7 and A15 to the alignment, and the column-pair 7 • 15 to the folding. Therefore, it can be seen that the maximum score of an alignment with folding of type I is given by Now, consider an alignment with folding (A, F) of type II. As was shown for the Base-Paring Maximization problem (Section 3.1), (A, F) can be decomposed into two alignments with folding (A', F') and (A″, F″), where (A', F') is an alignment with folding of Sand (A″, F″) is an alignment with folding of S, for some Q ∈ (X, Y) (Figure 19). In this case, score(A, F) = score(A', F') + score(A″, F″), and the maximum score of an alignment with folding of type II is
Figure 19

An alignment with folding of type . In such an alignment with folding the first and last alignment columns are not paired to each other, i.e. the last column is either paired to some other column (as in (a), which consists of columns 1 to 15 of the alignment with folding presented in Figure 17b), or it is unpaired (as in (b), which consists of columns 1 to 5 of the alignment with folding presented in Figure 17b). In both cases, the alignment with folding may be decomposed into two alignments with foldings (A', F') and (A", F"), where (A', F') is an alignment with folding for Sand (A", F") is an alignment with folding for S, for some Q ∈ (X, Y).

An alignment with folding of type . In such an alignment with folding the first and last alignment columns are not paired to each other, i.e. the last column is either paired to some other column (as in (a), which consists of columns 1 to 15 of the alignment with folding presented in Figure 17b), or it is unpaired (as in (b), which consists of columns 1 to 5 of the alignment with folding presented in Figure 17b). In both cases, the alignment with folding may be decomposed into two alignments with foldings (A', F') and (A", F"), where (A', F') is an alignment with folding for Sand (A", F") is an alignment with folding for S, for some Q ∈ (X, Y). Thus, βcan be recursively computed according to the following formula: In the computation of term (I) of the recurrence, O(22) expressions are examined, and each expression is computed in O(m) running time. Under the reasonable assumption that m is sufficiently small with respect to ||S|| (typically, m = 2), we can assume that m22= o (||S||), and even assume that , where M(r) is the running time of the Max Plus multiplication of two r × r matrices. The computation of term (II) is a Max Plus vector multiplication of the form μ= ⊕(β⊗ β), and thus the recursive formulation abides by the standard VMT settings for the Multiple String Inside VMT requirements, as listed in Definition 3. Therefore, the SAF problem with an instance S can be solved in Θ (M (||S||)) = o (||S||3) running time. This result improves the running time of the original algorithm [15], which is Θ(||S||3).
  20 in total

Review 1.  Noncoding RNA genes.

Authors:  S R Eddy
Journal:  Curr Opin Genet Dev       Date:  1999-12       Impact factor: 5.578

Review 2.  Gene regulation by riboswitches.

Authors:  Maumita Mandal; Ronald R Breaker
Journal:  Nat Rev Mol Cell Biol       Date:  2004-06       Impact factor: 94.444

3.  A faster algorithm for simultaneous alignment and folding of RNA.

Authors:  Michal Ziv-Ukelson; Irit Gat-Viks; Ydo Wexler; Ron Shamir
Journal:  J Comput Biol       Date:  2010-08       Impact factor: 1.479

4.  The equilibrium partition function and base pair binding probabilities for RNA secondary structure.

Authors:  J S McCaskill
Journal:  Biopolymers       Date:  1990 May-Jun       Impact factor: 2.505

Review 5.  RNAs everywhere: genome-wide annotation of structured RNAs.

Authors:  Rolf Backofen; Stephan H Bernhart; Christoph Flamm; Claudia Fried; Guido Fritzsch; Jörg Hackermüller; Jana Hertel; Ivo L Hofacker; Kristin Missal; Axel Mosig; Sonja J Prohaska; Dominic Rose; Peter F Stadler; Andrea Tanzer; Stefan Washietl; Sebastian Will
Journal:  J Exp Zool B Mol Dev Evol       Date:  2007-01-15       Impact factor: 2.656

6.  Fast algorithm for predicting the secondary structure of single-stranded RNA.

Authors:  R Nussinov; A B Jacobson
Journal:  Proc Natl Acad Sci U S A       Date:  1980-11       Impact factor: 11.205

7.  Stochastic context-free grammars for tRNA modeling.

Authors:  Y Sakakibara; M Brown; R Hughey; I S Mian; K Sjölander; R C Underwood; D Haussler
Journal:  Nucleic Acids Res       Date:  1994-11-25       Impact factor: 16.971

8.  Reducing the worst case running times of a family of RNA and CFG problems, using Valiant's approach.

Authors:  Shay Zakov; Dekel Tsur; Michal Ziv-Ukelson
Journal:  Algorithms Mol Biol       Date:  2011-08-18       Impact factor: 1.405

9.  Evaluation of several lightweight stochastic context-free grammars for RNA secondary structure prediction.

Authors:  Robin D Dowell; Sean R Eddy
Journal:  BMC Bioinformatics       Date:  2004-06-04       Impact factor: 3.169

10.  A comprehensive comparison of comparative RNA structure prediction approaches.

Authors:  Paul P Gardner; Robert Giegerich
Journal:  BMC Bioinformatics       Date:  2004-09-30       Impact factor: 3.169

View more
  5 in total

1.  Reducing the worst case running times of a family of RNA and CFG problems, using Valiant's approach.

Authors:  Shay Zakov; Dekel Tsur; Michal Ziv-Ukelson
Journal:  Algorithms Mol Biol       Date:  2011-08-18       Impact factor: 1.405

2.  Faster algorithms for RNA-folding using the Four-Russians method.

Authors:  Balaji Venkatachalam; Dan Gusfield; Yelena Frid
Journal:  Algorithms Mol Biol       Date:  2014-03-06       Impact factor: 1.405

3.  An improved Four-Russians method and sparsified Four-Russians algorithm for RNA folding.

Authors:  Yelena Frid; Dan Gusfield
Journal:  Algorithms Mol Biol       Date:  2016-08-05       Impact factor: 1.405

4.  LinearFold: linear-time approximate RNA folding by 5'-to-3' dynamic programming and beam search.

Authors:  Liang Huang; He Zhang; Dezhong Deng; Kai Zhao; Kaibo Liu; David A Hendrix; David H Mathews
Journal:  Bioinformatics       Date:  2019-07-15       Impact factor: 6.937

5.  Efficient edit distance with duplications and contractions.

Authors:  Tamar Pinhas; Shay Zakov; Dekel Tsur; Michal Ziv-Ukelson
Journal:  Algorithms Mol Biol       Date:  2013-10-29       Impact factor: 1.405

  5 in total

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