Skip to main content

Efficient sequential and parallel algorithms for finding edit distance based motifs

Abstract

Background

Motif search is an important step in extracting meaningful patterns from biological data. The general problem of motif search is intractable and there is a pressing need to develop efficient, exact and approximation algorithms to solve this problem. In this paper, we present several novel, exact, sequential and parallel algorithms for solving the (l,d) Edit-distance-based Motif Search (EMS) problem: given two integers l,d and n biological strings, find all strings of length l that appear in each input string with atmost d errors of types substitution, insertion and deletion.

Methods

One popular technique to solve the problem is to explore for each input string the set of all possible l-mers that belong to the d-neighborhood of any substring of the input string and output those which are common for all input strings. We introduce a novel and provably efficient neighborhood exploration technique. We show that it is enough to consider the candidates in neighborhood which are at a distance exactly d. We compactly represent these candidate motifs using wildcard characters and efficiently explore them with very few repetitions. Our sequential algorithm uses a trie based data structure to efficiently store and sort the candidate motifs. Our parallel algorithm in a multi-core shared memory setting uses arrays for storing and a novel modification of radix-sort for sorting the candidate motifs.

Results

The algorithms for EMS are customarily evaluated on several challenging instances such as (8,1), (12,2), (16,3), (20,4), and so on. The best previously known algorithm, EMS1, is sequential and in estimated 3 days solves up to instance (16,3). Our sequential algorithms are more than 20 times faster on (16,3). On other hard instances such as (9,2), (11,3), (13,4), our algorithms are much faster. Our parallel algorithm has more than 600 % scaling performance while using 16 threads.

Conclusions

Our algorithms have pushed up the state-of-the-art of EMS solvers and we believe that the techniques introduced in this paper are also applicable to other motif search problems such as Planted Motif Search (PMS) and Simple Motif Search (SMS).

Background

Motif search has applications in solving such crucial problems as identification of alternative splicing sites, determination of open reading frames, identification of promoter elements of genes, identification of transcription factors and their binding sites, etc. (see e.g., Nicolae and Rajasekaran [1]). There are many formulations of the motif search problem. A widely studied formulation is known as (l,d)-motif search or Planted Motif Search (PMS) [2]. Given two integers l,d and n biological strings the problem is to find all strings of length l that appear in each of the n input strings with atmost d mismatches. There is a significant amount of work in the literature on PMS (see e.g., [1, 35], and so on).

PMS considers only point mutations as events of divergence in biological sequences. However, insertions and deletions also play important roles in divergence [2, 6]. Therefore, researchers have also considered a formulation in which the Levenshtein distance (or edit distance), instead of mismatches, is used for measuring the degree of divergence [7, 8]. Given n strings S (1),S (2),…,S (n), each of length m from a fixed alphabet Σ, and integers l,d, the Edit-distance-based Motif Search (EMS) problem is to find all patterns M of length l that occur in atleast one position in each S (i) with an edit distance of atmost d. More formally, M is a motif if and only if i, there exist k [ ld,l+d],j [ 1,mk+1] such that for the substring \(S^{(i)}_{j,k}\) of length k at position j of S (i), \(ED\left (S^{(i)}_{j,k},M\right) \le d\). Here E D(X,Y) stands for the edit distance between two strings X and Y.

EMS is also NP-hard since PMS is a special case of EMS and PMS is known to be NP-hard [9]. As a result, any exact algorithm for EMS that finds all the motifs for a given input can be expected to have an exponential (in some of the parameters) worst case runtime. One of the earliest EMS algorithms is due to Rocke and Tompa [7] and is based on Gibbs Sampling which requires repeated searching of the motifs in a constantly evolving collection of aligned strings, and each search pass requires O(n l) time. This is an approximate algorithm. Sagot [8] gave a suffix tree based exact algorithm that takes O(n 2 m l d|Σ|d) time and O(n 2 m/w) space where w is the word length of the computer. Adebiyi and Kaufmann [10] proposed an exact algorithm with an expected runtime of O(n m+d(n m)(1+pow(ε)) logn m) where ε=d/l and p o w(ε) is an increasing concave function. The value of p o w(ε) is roughly 0.9 for protein and DNA sequences. Wang and Miao [11] gave an expectation minimization based heuristic genetic algorithm.

Rajasekaran et al. [12] proposed a simpler Deterministic Motif Search (DMS) that has the same worst case time complexity as the algorithm by Sagot [8]. The algorithm generates and stores the neighborhood of every substring of length in the range [ld,l+d] of every input string and using a radix sort based method, outputs the neighbors that are common to atleast one substring of each input string. This algorithm was implemented by Pathak et al. [13].

Following a useful practice for PMS algorithms, Pathak et al. [13] evaluated their algorithm on certain instances that are considered challenging for PMS: (9,2), (11,3), (13,4) and so on [1], and are generated as follows: n=20 random DNA/protein strings of length m=600, and a short random string M of length l are generated according to the independent identically distributed (i.i.d) model. A separate random d-hamming distance neighbor of M is “planted” in each of the n input strings. Such an (l,d) instance is defined to be a challenging instance if l is the largest integer for which the expected number of spurious motifs, i.e., the motifs that would occur in the input by random chance, is atleast 1.

The expected number of spurious motifs in EMS are different from those in PMS. Table 1 shows the expected number of spurious motifs for l [ 5,21] and d upto max{l−2,13}, n=20, m=600 and Σ={A,C,G,T} [see Additional file 1]. The challenging instances for EMS turn out to be (8,1), (12,2), (16,3), (20,4) and so on. To compare with [13], we consider both types of instances, specifically, (8,1), (9,2), (11,3), (12,2), (13,4) and (16,3).

Table 1 Expected number of spurious motifs in random instances for n=20,m=600. Here, represents value ≥1.0e+7

The sequential algorithm by Pathak et al. [13] solves the moderately hard instance (11,3) in a few hours and does not solve the next difficult instance (13,4) even after 3 days. A key time-consuming part of the algorithm is in the generation of the edit distance neighborhood of all substrings as there are many common neighbors.

Contributions

In this paper we present several improved algorithms for EMS that solve instance (11,3) in less than a couple of minutes and instance (13,4) in less than a couple of hours. On (16,3) our algorithm is more than 20 times faster than EMS1. Our algorithm uses an efficient technique (introduced in this paper) to generate the edit distance neighborhood of length l with distance atmost d of all substrings of an input string. Our parallel algorithm in the multi-core shared memory setting has more than 600 % scaling performance on 16 threads. Our approach uses following five ideas which can be applied to other motif search problems as well:

Efficient neighborhood generation: We show that it is enough to consider the neighbors which are at a distance exactly d from all possible substrings of the input strings. This works because the neighbors at a lesser distance are also included in the neighborhood of some other substrings.

Compact representation using wildcard characters: We represent all possible neighbors which are due to an insertion or a substitution at a position by a single neighbor using a wildcard character at the same position. This compact representation of the candidate motifs in the neighborhood requires less space.

Avoiding duplication of candidate motifs: Our algorithm uses several rules to avoid duplication in candidate motifs and we prove that our technique generates neighborhood that is nearly duplication free. In other words, our neighborhood generation technique does not spend a lot of time generating neighbors that have already been generated.

Trie based data structure for storing compact motifs: We use a trie based data structure to efficiently store the neighborhood. This not only simplifies the removal of duplicate neighbors but also helps in outputting the final motifs in sorted order using a depth first search traversal of the trie.

Modified radix-sort for compact motifs: Our parallel algorithm stores the compact motifs in an array and uses a modified radix-sort algorithm to sort them. Use of arrays instead of tries simplifies updating the set of candidate motifs by multiple threads.

Methods

In this section we introduce some notations and observations.

An (l,d)-friend of a k-mer L is an l-mer at an exact distance of d from L. Let F l,d (L) denote the set of all (l,d)-friends of L. An (l,d)-neighbor of a k-mer L is an l-mer at a distance of atmost d from L. Let N l,d (L) denote the set of all (l,d)-neighbors of L. Then

$$\begin{array}{*{20}l} N_{l,d}(L) = \cup_{t = 0}^{d} F_{l,t}(L). \end{array} $$
(1)

For a string S of length m, an (l,d)-motif of S is an l-mer at a distance atmost d from some substring of S. Thus an (l,d)-motif of S is an (l,d)-neighbor of atleast one substring S j,k =S j S j+1S j+k−1 where k[ld,l+d]. Therefore, the set of (l,d)-motifs of S, denoted by M l,d (S), is given by

$$\begin{array}{*{20}l} M_{l,d}(S) = \cup_{k=l-d}^{l+d} \cup_{j=1}^{m-k+1} N_{l,d}(S_{j,k}). \end{array} $$
(2)

For a collection of strings \(\mathcal {S} = \{S^{(1)}, S^{(2)}, \ldots, S^{(m)}\}\), a (common) (l,d)-motif is an l-mer at a distance atmost d from atleast one substring of each S (i). Thus the set of (common) (l,d)-motifs of \(\mathcal {S}\), denoted by \(M_{l,d}(\mathcal {S})\), is given by

$$\begin{array}{*{20}l} M_{l,d}(\mathcal{S}) = \cap_{i=1}^{n} M_{l,d}(S^{(i)}). \end{array} $$
(3)

One simple way of computing F l,d (L) is to grow the friendhood of L by one distance at a time for d times and to select only the friends having length l. Let G(L) denote the set of strings obtained by one edit operation on L and \(G(\{L_{1}, L_{2}, \ldots, L_{r}\}) = \cup _{t=1}^{r} G(L_{t})\). If G 1(L)=G(L), and for t>1, G t(L)=G(G t−1(L)) then

$$\begin{array}{*{20}l} F_{l,d}(L) = \{x \in G^{d}(L) : |x| = l\}. \end{array} $$
(4)

Using Eqs. (1), (2), (3) and (4), Pathak et al. [13] gave an algorithm that stores all possible candidate motifs in an array of size |Σ|l. However the algorithm is inefficient in generating the neighborhood as the same candidate motif is generated by several combinations of the basic edit operations. Also, the O(|Σ|l) memory requirement makes the algorithm inapplicable for larger instances. In this paper we mitigate these two limitations.

Efficient neighborhood generation

We now give a more efficient algorithm to generate the (l,d)-neighborhood of all possible k-mers of a string. Instead of computing (l,t)-friendhood for all 0≤td, we compute only the exact (l,d)-friendhood.

Lemma 1.

\(M_{l,d}(S) = \cup _{k=l-d}^{l+d} \cup _{j=1}^{m-k+1} F_{l,d}(S_{j,k})\).

Proof.

Consider the k-mer L=S j,k . If k=l+d then we need d deletions to make L an l-mer. There cannot be any (l,t)-neighbor of L for t<d. Thus

$$\begin{array}{*{20}l} \cup_{t = 0}^{d} F_{l,t}(S_{j,l+d}) = F_{l,d}(S_{j,l+d}). \end{array} $$
(5)

Suppose k<l+d. Any (l,d−1)-neighbor B of L is also an (l,d)-neighbor of L =S j,k+1 because E D(B,L )≤E D(B,L)+E D(L,L )≤(d−1)+1=d. Thus

$$\begin{array}{*{20}l} \cup_{t=0}^{d} F_{l,t}(S_{j,k}) \subseteq F_{l,d}(S_{j,k}) \bigcup \cup_{t=0}^{d} F_{l,t}(S_{j,k+1}) \end{array} $$

which implies that

$$\begin{array}{*{20}l} \cup_{r=k}^{k{+}1}\cup_{t{=}0}^{d} F_{l,t}(S_{j,r}) = F_{l,d}(S_{j,k}) \bigcup \cup_{t=0}^{d} F_{l,t}(S_{j,k{+}1}). \end{array} $$
(6)

Applying (6) repeatedly for k=ld,ld+1,…,l+d−1, along with (5) in (1) and (2) gives the result of the lemma.

We generate F l,d (S j,k ) in three phases: we apply δ deletions in the first phase, β substitutions in the second phase, and α insertions in the final phase, where d=δ+α+β and l=kδ+α. Solving for α,β,δ gives max{0,q}≤δ≤(d+q)/2, α=δq and β=d−2δ+q where q=kl. In each of the phases, the neighborhood is grown by one edit operation at a time.

Compact motifs

The candidate motifs in F l,d (S j,k ) are generated in a compact way. Instead of inserting each character in Σ separately at a required position in S j,k , we insert a new character Σ at that position. Similarly, instead of substituting a character σS j,k by each σ Σ{σ} separately, we substitute σ by . The motifs common to all strings in \(\mathcal {S}\) is determined by using the usual definition of union and the following definition of intersection on compact strings A,B(Σ{})l in (3):

$$\begin{array}{@{}rcl@{}} \arraycolsep=1pt A {\cap} B = \left\{ \begin{array}{ll} \emptyset & \text{if}~ \exists j~\text{s.t.}~A_{j}, B_{j} \in \Sigma, A_{j} \ne B_{j}\\ \sigma_{1}\sigma_{2}\ldots \sigma_{l} & \text{else, where}~\sigma_{j} = \left\{ \begin{array}{ll} b_{j} & \text{if}~a_{j} {=} * \\ a_{j} & \text{if}~b_{j} {=} *. \end{array} \right. \end{array} \right. \end{array} $$
(7)

Trie for storing compact motifs

We store the compact motifs in a trie based data structure which we call a motif trie. This helps implement the intersection defined in (7). Each node in the motif trie has atmost |Σ| children. The edges from a node u to its children v are labeled with mutually exclusive subsets l a b e l(u,v)Σ. An empty set of compact motifs is represented by a single root node. A non-empty trie has l+1 levels of nodes, the root being at level 0. The trie stores the l-mer σ 1 σ 2σ l , all σ j Σ, if there is a path from the root to a leaf where σ j appears in the label of the edge from level j−1 to level j.

For each string \(S=\mathcal {S}^{(i)}\) we keep a separate motif trie M (i). Each compact neighbor AF l,d (S j,k ) is inserted into the motif trie recursively as follows. We start with the root node where we insert A 1 A 2A l . At a node u at level j where the prefix A 1 A 2A j−1 is already inserted, we insert the suffix A j A j+1A l as follows. If A j Σ we insert A =A j+1 A j+2A l to the children v of u such that A j l a b e l(u,v). If l a b e l(u,v)≠{A j }, before inserting we make a copy of subtrie rooted at v. Let v be the root of the new copy. We make v a new child of u, set l a b e l(u,v )={A j }, remove A j from l a b e l(u,v), and insert A to v . On the other hand if A j = we insert A to each children of u. Let T=Σ if A j = and T={A j } otherwise. Let R=T v l a b e l(u,v). If T we create a new child v of u, set l a b e l(u,v )=R and recursively insert A to v . Figure 1 shows examples of inserting into the motif trie.

Fig. 1
figure 1

Inserting into motif trie for Σ={A,C,G,T} and l=3. a After inserting G T into empty trie. b After inserting another string AC

We also maintain a motif trie \(\mathcal {M}\) for the common compact motifs found so far, starting with \(\mathcal {M} = M^{(1)}\). After processing string S (i) we intersect the root of M (i) with the root of \(\mathcal {M}\). In general a node u 2M (i) at level j is intersected with a node \(u_{1} \in \mathcal {M}\) at level j using the procedure shown in Algorithm 1. Figure 2 shows an example of the intersection of two motif tries.

Fig. 2
figure 2

Intersection of motif tries. a Trie for A GCT. b Intersection of trie in Fig. 1 b and trie in Fig. 2 a

The final set of common motifs is obtained by a depth-first traversal of \(\mathcal {M}\) outputting the label of the path from the root whenever a leaf is traversed. An edge (u,v) is traversed separately for each σl a b e l(u,v).

Efficient compact neighborhood generation

A significant part of the time taken by our algorithm is in inserting compact neighbors into the motif trie as it is executed for each neighbor in the friendhood. Our efficient neighborhood generation technique and the use of compact neighbors reduce duplication in neighborhood but do not guarantee completely duplication free neighborhood. In this section, we design few simple rules to reduce duplication further. Later we will see that these rules are quite close to the ideal as we will prove that the compact motif generated after skipping using the rules, are distinct if all the characters in the input string are distinct.

To differentiate multiple copies of the same compact neighbor, we augment it with the information about how it is generated. This information is required only in the proof and is not used in the actual algorithm. Formally, each compact neighbor L of a k-mer S j,k is represented as an ordered tuple 〈S j,k ,T〉 where T denotes the sequence of edit operations applied to S j,k . Each edit operation in T is represented as a tuple 〈p,o〉 where p denotes the position (as in S) where the edit operation is applied and o{D,R,I} denotes the type of the operation – deletion, substitution and insertion, respectively. At each position there can be one deletion or one substitution but one or more insertions. The tuples in T are sorted lexicographically with the natural order for p and for o, D<R<I.

The rules for skipping compact neighbors are given in Table 2. Rule 1 applies when S j,k is not the rightmost k-mer and the current edit operation deletes the leftmost base of S j,k , i.e., S j . Rule 2 applies when the current edit operation substitutes a base just after a base that was already deleted. Rule 3 skips the neighbor which is generated from a k-mer except the rightmost by deleting a base and substituting all bases before it. Rules 4–9 apply when the current operation is an insertion. Rule 4,6 apply when the insertion is just before a deletion and a substitution, respectively. Rule 5 applies when the insertion is just after a deletion. Rule 7,8 apply when the k-mer is not the leftmost. Rule 7 applies when the insertion is at the leftmost position and Rule 8 applies when all bases before the position of insertion are already substituted. Rule 9 applies when the k-mer is not the rightmost and the insertion is at the right end. The first in each pair of the figures in Fig. 3 illustrates the situation where the corresponding rule applies.

Fig. 3
figure 3

Construction of L under different rules in the proof of Lemma 2. Insertions are shown using arrows, deletions using − and substitutions using . Rule 5 case (i) is similar to Rule 4 case (i)

Table 2 Conditions for skipping motif L=〈M,S j,k ,T

Let \(\bar {M}_{l,\,d}(S)\) denote the multi-set of tuples for the compact motifs of S that were not skipped by our algorithm using the rules in Table 2 and M l, d (S) be the set of compact motifs generated by (3). Let Γ(〈S j, k ,T〉) be the resulting string when the operations in T are applied to S j, k and Γ(Z)= LZ Γ(L).

Lemma 2.

\(\Gamma (\bar {M}_{l,d}(S)) = M_{l,d}(S)\).

Proof.

By construction, \(\Gamma (\bar {M}_{l,d}(S)) \subseteq M_{l,d}(S)\). We show \(M_{l,d}(S) \subseteq \Gamma (\bar {M}_{l,d}(S))\) by giving a contradiction when \(M_{l,d}(S) \setminus \Gamma (\bar {M}_{l,d}(S)) \ne \emptyset \).

We define an order on the compact neighbors \(\phantom {\dot {i}\!}L_{1} = \langle {S_{j_{1},k_{1}}, T_{1}}\rangle \) and \(\phantom {\dot {i}\!}L_{2} = \langle {S_{j_{2},k_{2}}, T_{2}}\rangle \) as follows: L 1<L 2 if Γ(L 1)<Γ(L 2) and L 2<L 1 if Γ(L 2)<Γ(L 1). When Γ(L 1)=Γ(L 2) we have L 1<L 2 if and only if (k 1<k 2)((k 1=k 2)(p 1<p 2))((k 1=k 2)(p 1=p 2)(o 1<o 2)) where 〈p 1,o 1T 1,〈p 2,o 2T 2 are the leftmost edit operations where T 1,T 2 differ.

Suppose \(M \in M_{l,d}(S) \setminus \Gamma (\bar {M}_{l,d}(S))\). Let L=〈S j, k ,T〉 be the largest (in the order defined above) tuple skipped by our algorithm such that Γ(L)=M. For each r=1,…,9 we show a contradiction that if L is skipped by Rule r then there is another \(\phantom {\dot {i}\!}L'=\langle {S_{j',\,k'},T'}\rangle \) with the same number of edit operations and Γ(L )=M but L<L . Figure 3 illustrates the choice of L under different rules.

Rule 1. Here j+km and 〈j,DT. Consider T =(T{〈j,D〉}){j+k,D}, and j =j+1,k =k.

Rule 2. Consider T =T{〈j+t,D〉,〈j+t+1,R〉}{〈j+t,R〉,〈j+t+1,D〉}, and j =j,k =k.

Rule 3. T =T{〈j,R〉,〈j+t+1,D〉}{〈j+t+1,R〉,〈j+k,D〉}, j =j+1,k =k.

Rule 4. For this and subsequent rules k<l+d as there is atleast one insertion and hence k could possibly be equal to k+1. We consider two cases. Case (i) j+km: T =T{〈j+t,D〉,〈j+t,I〉}{〈j+t,R〉,〈j+k,D〉}, j =j,k =k+1. Case (ii) j+k=m+1: Here deletion of S j is allowed by Rule 1. T =T{〈j+t,D〉,〈j+t,I〉}{〈j−1,D〉,〈j+t,R〉}, j =j−1,k =k+1.

Rule 5. The same argument for Rule 4 applies considering 〈j+t+1,I〉 instead of 〈j+t,I〉.

Rule 6. T =T{〈j+t,I〉}{〈j+t+1,I〉}, and j =j,k =k.

Rule 7. T =T{〈j,I〉}{〈j−1,R〉}, j =j−1,k =k+1.

Rule 8. T =T{〈j+t,I〉}{〈j−1,R〉}, j =j−1,k =k+1.

Rule 9. T =T{〈j+k,I〉}{〈j+k,R〉}, j =j,k =k+1.

Consider two compact motifs \(\phantom {\dot {i}\!}M_{1} = \langle {S_{j_{1},k_{1}}, T_{1}}\rangle \) and \(\phantom {\dot {i}\!}M_{2} = \langle {S_{j_{2},k_{2}}, T_{2}}\rangle \) in \(\bar {M}_{l,d}(S)\). For q{1,2}, let \(\left \langle {p_{q}^{(1)}, o_{q}^{(1)}}\right \rangle, \left \langle {p_{q}^{(2)}, o_{q}^{(2)}}\right \rangle, \ldots, \left \langle {p_{q}^{(d)}, o_{q}^{(d)}}\right \rangle \) be the sequence of edit operations in T q arranged in the order as the neighbors are generated by our algorithm, and the intermediate neighbors be \(L_{q}^{(h)} = \left \langle S_{j_{q},k_{q}}, \left \{\left \langle {p_{q}^{(1)}, o_{q}^{(1)}}\right \rangle,\right.\right.\left.\left. \left \langle {p_{q}^{(2)}, o_{q}^{(2)}}\right \rangle, \ldots, \left \langle {p_{q}^{(h)}, o_{q}^{(h)}}\right \rangle \right \} \right \rangle \) for all h=1,2,…,d. We also denote the initial k-mer as a neighbor \(L_{q}^{(0)} = \langle {S_{j_{q},k_{q}}, \emptyset }\rangle \).

Lemma 3.

If S j s are all distinct and \(\Gamma \left (L_{1}^{(h)}\right) = \Gamma \left (L_{2}^{(h)}\right)\) for 1≤hd then \(\left \langle {p_{1}^{(h)}, o_{1}^{(h)}}\right \rangle = \left \langle {p_{2}^{(h)}, o_{2}^{(h)}}\right \rangle \) and \(\Gamma \left (L_{1}^{(h-1)}\right) = \Gamma \left (L_{2}^{(h-1)}\right)\).

Proof.

To simplify the proof, we use p q ,o q ,L q to denote \(p_{q}^{(h)}, o_{q}^{(h)}, L_{q}^{(h)}\), respectively, for all q{1,2}. Without loss of generality we assume p 1p 2.

As p 1,p 2 are positions in S, it would be enough to prove 〈p 1,o 1〉=〈p 2,o 2〉 because that would imply \(\Gamma \left (L_{1}^{(h-1)}\right) = \Gamma \left (L_{2}^{(h-1)}\right)\).

If 〈p 1,o 1〉≠〈p 2,o 2〉 then either (a) o 1=o 2 and p 1<p 2 or (b) o 1o 2 and p 1p 2, giving us the following 9 possible cases. We complete the proof by giving a contradiction in each of these 9 cases:

Case

o 1

o 2

cond.

Case

o 1

o 2

cond.

Case

o 1

o 2

cond.

1

D

D

p 1<p 2

4

R

D

p 1p 2

7

I

D

p 1p 2

2

D

R

p 1p 2

5

R

R

p 1<p 2

8

I

R

p 1p 2

3

D

I

p 1p 2

6

R

I

p 1p 2

9

I

I

p 1<p 2

Cases 2, 3, 4, 7

Our algorithm applies edit operations in phases: first deletions, followed by substitutions and finally insertions. In all these cases, one of Γ(L 1),Γ(L 2) does not have any because only deletions have been applied so far and the other has at least one because a substitution or an insertion has been applied. This implies Γ(L 1)≠Γ(L 2), a contradiction.

Case 1

L 2 has \(S_{p_{2}}\) deleted. As Γ(L 1)=Γ(L 2), \(S_{p_{2}}\) must have been deleted in some operation prior to reaching L 1. As the deletions are applied in order, left to right, we must have p 1=p 2 which is a contradiction.

Case 5

This case has been illustrated in Fig. 4 a. L 1 has no substitution at a position >p 1 and no insertion at all. The at p 2 in L 2 must be matched with the at p 1 in L 1 and as the characters in S are distinct, all of \(S_{p_{1}+1},\ldots,S_{p_{2}}\) cannot appear in L 1 and hence must be deleted in L 1.

Fig. 4
figure 4

Proof of uniqueness (Lemma 2). Subfigures a,b,c,d illustrates the cases 5,6,7,8,9 respectively

Now for each t<p 1, right to left, and y=t+p 2p 1, we have the following: S y is either deleted or substituted in L 1, which implies that S y must be substituted in L 2 as the deletion of S y in L 2 is prohibited by Rule 2, and finally to match this in L 2, S t must be substituted in L 1 as S t cannot be deleted in L 1, again by Rule 2.

But this makes Rule 3 applicable to L 1 and L 1 must have been skipped. This is a contradiction.

Case 6

By Rule 9 the insertion in L 2 cannot be at the rightmost position and hence L 2 must have at least one character after the insertion. By Rules 4 and 6, \(S_{p_{2}}\) must not be deleted or substituted in L 2 and hence it must not be deleted or substituted in L 1 either. Thus p 1<p 2. There cannot be any insertion or substitution at a position >p 1 in L 1. Thus the due to the insertion at p 2 in L 2 must be matched by the due to the substitution at p 1 in L 1 and all of \(S_{p_{1}+1},\ldots,S_{p_{2}-1}\) must be deleted in L 1.

By Rule 7, \(S_{p_{2}}\) cannot be the leftmost in \(S_{j_{2},k_{2}}\). So we consider \(S_{p_{2}-1}\) in L 1,L 2. It is either deleted or substituted in L 1 and hence by Rule 5, it must be substituted in \(S_{p_{2}}\) (there can be multiple insertions at p 2 in L 2 but that does not affect this argument). To match this , \(S_{p_{1}-1}\) must be substituted in L 1.

Using a similar argument as in Case 5, S t must be substituted in L 1 for each t<p 1−1. But this again makes Rule 3 applicable to L 1 and L 1 must have been skipped, which is not possible. This case has been illustrated in Fig. 4 b.

Case 8

Due to Rules 4, 6 and 9, \(S_{p_{1}}\) must not be deleted or substituted in L 1 and hence it must not be deleted or substituted in L 2 either. Thus p 1<p 2. The due to the insertion in L 1 must be matched by a substitution at p 3<p 1 such that all of \(S_{p_{3}+1}, \dots, S_{p_{1}-1}\) are deleted in L 2.

By Rule 7, p 1 cannot be the leftmost in L 1. For each t<p 1, right to left, and y=t+p 3p 1, we have the following: S y is substituted in L 1 because as the deletion of S y in L 1 is prohibited by Rules 2 and 5, S y must be substituted in L 2 again by Rule 2, and to match this , S t must be substituted in L 1.

But this makes Rule 8 applicable to L 1 and L 1 must have been skipped which is not possible. This case has been illustrated in Fig. 4 c.

Case 9

This case has been illustrated in Fig. 4 d. Due to Rules 4, 6 and 9, \(S_{p_{1}},S_{p_{2}}\) must not be deleted or substituted in L 1,L 2. The insertion at p 2 in L 2 must be matched by a substitution at a position p 3 in L 1 such that p 1<p 3<p 2 and all of \(S_{p_{3}+1},\ldots,S_{p_{2}-1}\) must be deleted in L 1.

Now for each position y, from right to left, where p 1<y<p 2, S y is either deleted or substituted in S 1, S y cannot be deleted in L 2 by Rules 2 and 5 and hence must be substituted in L 2, which again must be matched by a substitution at a position t in L 1 such that p 1<t<p 3. However this is impossible as the number of possible ys is larger than the number of possible ts.

If all S j s are distinct and Γ(M 1)=Γ(M 2) then applying Lemma 3 repeatedly for h=d,d−1,…,0 gives us the fact that starting k-mers \(S_{j_{1},k_{1}},S_{j_{2},k_{2}}\) as well as the corresponding edit operations in T 1,T 2 for M 1,M 2 must be the same. This is another way of stating the following theorem.

Theorem 1.

If S j s are all distinct then \(\bar {M}_{l,d}(S)\) is duplication free.

In general S j s are not distinct. However, as the input strings are random, the duplication due to repeated characters are limited. On instance (11,3) our algorithm generates each compact motif, on an average, 1.55 times using the rules compared to 3.63 times without the rules (see Fig. 5).

Fig. 5
figure 5

Histogram of number of times a motif is repeated with and without using the skipping rules 1–9

Implementation To track the deleted characters, instead of actually deleting we substitute them by a new symbol − not in Σ . We populate the motif trie M (i) by calling g e n A l l(S (i)) given in Algorithm 2. Rules 1–8 are incorporated in G(L,j,δ,β,α), H(L,j,β,α) and I(L,j,α) which are shown in Algorithms 3, 4, and 5, respectively where s u b(L,j,σ) substitutes L j by σ and i n s(L,j,σ) inserts σ just before L j .

Modified radix-sort for compact motifs

A simpler data structure alternative to tries for storing compact motifs could be an array. However, it becomes difficult to compute the intersection in (3) as defined in (7) when the compact motifs are stored in arrays. One straight-forward solution is to first expand the s in the compact motifs, then sort the expanded motifs and finally compute the intersection by scanning through the two sorted arrays. This, to a great extent, wipes out the advantage using the s in the compact motifs. However, we salvage execution time by executing a modified radix-sort that simultaneously expands and sorts the array of compact motifs: Compact-Radix-Sort(A,l) where the first parameter A represents the array of compact motifs and the second parameter represents the number of digits of the elements in A which is equal to the number of base positions l in a motif.

As in the standard radix-sort, our algorithm uses l phases, one for each base position in the motif. In the ith phase it sorts the motifs using bucket sort on the ith base of the motifs. However, in case of compact motifs, for each at a base position, the bucket counters for all σΣ are incremented. While reordering the motifs as per the bucket counts, if there is a at ith base position of a motif, |Σ| copies of the motif are created and they are placed at appropriate locations in the array after finalizing the correct σ for the . The details are given in Algorithm 6. In each phase a bucket counter B and a cumulative counter C are used. The temporary array T stores the partially expanded motifs from the current phase.

Discussion We did an experiment to compare the time taken by the two approaches – (i) using the expanded motifs, i.e., without using the wildcard character, and (ii) using compact motifs and sorting them using Compact-Radix-Sort. For a single input string of instance (16,3), the first approach generated in 24.4 s 198,991,822 expanded motifs in which 53,965,581 are unique. The second approach generated in 13.7 s 11,474,938 compact motifs with the same number of unique expanded motifs. This shows the effectiveness of the second approach.

Parallel algorithm

We now give our parallel algorithm in the multi-core shared memory setting. To process each input sequence S (i) the algorithm uses p+1 threads. The main thread first prepares the workload for other p threads. A workload involves the generation of the neighborhood for a k-mer of S (i), where ldkl+d. There are total \(\sum _{k=l-d}^{l+d} (m-k+1) = (2d+1)(m-l+1)\) workloads. The number of neighbors generated in the workloads are not the same due to the skipping of some neighbors using rules 1–9. For load balancing, we randomly and evenly distribute workloads to threads. Each thread first generates all the compact motifs in its workloads and then sort them using Compact-Radix-Sort. If i>2 then it removes all neighbors not present in M (i−1) which is the set of common motifs of S (1),S (2),…,S (i−1). The master thread then merges the residue candidate motifs from all the p threads to compute M (i). The merging takes place in log2p phases in a binary tree fashion where the jth phase uses \(2^{\log _{2}{p} - j}\) threads each merging two sorted arrays of motifs.

Results and discussion

We implemented our algorithms in C++ and evaluated on a Dell Precisions Workstation T7910 running RHEL 7.0 on two sockets each containing 8 Dual Intel Xeon Processors E5-2667 (8C HT, 20 MB Cache, 3.2 GHz) and 256 GB RAM. For our experiments we used only one of the two sockets. We generated random (l,d) instances according to Pevzner and Sze [2] and as described in the background section. For every (l,d) combination we report the average time taken by 4 runs. We compare the following four implementations:

  • EMS1: A modified implementation of the algorithm in [13] which considered the neighborhood of only l-mers whereas the modified version considers the neighborhood of all k-mers where ldkl+d.

  • EMS2: A faster implementation of our sequential algorithm which uses tries for storing candidate motifs where each node of the trie stores an array of pointers to each children of the node. However, this makes the space required to store a tree node dependent on the size of the alphabet Σ.

  • EMS2M: A slightly slower but memory efficient implementation of our sequential algorithm where each node of the trie keeps two pointers: one to the leftmost child and the other to the immediate right sibling. Access to the other children are simulated using the sibling pointers.

  • EMS2P: Our parallel algorithm which uses arrays for storing motifs. We experimented with p=1,2,4,8,16 threads.

We run the four algorithms on the challenging instances (8,1), (12,2), (16,3) and on the instances (9,2), (11,3), (13,4) which are challenging for PMS and have been used for experimentation in [13]. We report the runtime and the memory usage of the four algorithms in Table 3.

Table 3 Comparison between EMS1 and three implementations of EMS2

Our efficient neighborhood generation enables our algorithm to solve instance (13,4) in less than two hours which EMS1 could not solve even in 3 days. The factor by which EMS2 takes more memory compared to EMS1 gradually decreases as instances become harder. As EMS2 stores 4 child pointers for A,C,G,T in each node of the motif trie whereas EMS2M simulates access to children using only 2 pointers, EMS2 is faster. Memory reduction in EMS2M is not exactly by a factor 2(=4/2) because we also keep a bit vector in each node to represent the subset of {A,C,G,T} a child corresponds to. The memory reduction would be significant for protein strings.

Our parallel algorithm EMS2P using one thread is significantly faster than the sequential algorithms EMS2 and EMS2M but uses more memory. This space-time trade off is due to the fact that the arrays are faster to access but the tries use lesser memory. Moreover, the repeated motifs are uniquely stored in a single leaf node in the trie but stored separately in the array. The scaling performance using multiple threads are shown in Fig. 6 where we plot the ratio of time taken by p threads to the time taken by a single thread on the Y-axis. The time required for handling 16 threads turns out to be costlier than actually processing the motifs in the smallest instance (8,1). We observe speed up consistent across other bigger instances. For example, instance (16,3) takes about 224 s using 1 thread and 37 s using 16 threads. This gives more than 600 % scaling performance using 16 threads.

Fig. 6
figure 6

Scaling performance of our parallel algorithm

Conclusions

We presented several efficient sequential and parallel algorithms for the EMS problem. Our algorithms use some novel and elegant rules to explore the candidate motifs in such a way that only a small fraction of the candidate motifs are explored twice or more. In fact, we also proved that these rules are close to ideal in the sense that no candidate motif is explored twice if the characters in the input string are all distinct. This condition may not be practical and ideas from [14] can be used when the characters in the input string are repeated. Nevertheless, the rules help because the instances are randomly generated and the k-mers in the input string are not much frequent. The second reason for the efficiency of our sequential algorithms is the use of a trie based data structure to compactly store the motifs. Our parallel algorithm stores candidate motifs in an array and uses a modified radix-sort based method for filtering out invalid candidate motifs.

Our algorithms pushed up the state-of-the-art of EMS solvers to a state where the challenging instance (16,3) is solved in slightly more than half a minute using 16 threads. Future work could be to solve harder instances, including those involving protein strings, and possibly using many-core distributed algorithms.

References

  1. Nicolae M, Rajasekaran S. qPMS9: An Efficient Algorithm for Quorum Planted Motif Search. Nat Sci Rep. 2015;5. doi:10.1038/srep07813.

  2. Floratou A, Tata S, Patel JM. Efficient and Accurate Discovery of Patterns in Sequence Data Sets. IEEE Trans Knowl Data Eng. 2011; 23(8):1154–68. http://0-doi-ieeecomputersociety-org.brum.beds.ac.uk/10.1109/TKDE.2011.69.

  3. Nicolae M, Rajasekaran S. Efficient Sequential and Parallel Algorithms for Planted Motif Search. BMC Bioinformatics. 2014; 15(1):34.

    Article  PubMed  PubMed Central  Google Scholar 

  4. Tanaka S. Improved Exact Enumerative Algorithms for the Planted (l,d)-motif Search Problem. IEEE/ACM Trans Comput Biol Bioinformatics (TCBB). 2014; 11(2):361–74.

    Article  Google Scholar 

  5. Yu Q, Huo H, Zhang Y, Guo H. PairMotif: A new pattern-driven algorithm for planted (l,d) DNA motif search. PloS One. 2012; 7(10):48442.

    Article  Google Scholar 

  6. Karlin S, Ost F, Blaisdell BE. Patterns in DNA and Amino Acid Sequences and Their Statistical Significance In: Waterman MS, editor. Mathematical Methods for DNA Sequences. Boca Raton, FL, USA: CRC Press Inc: 1989.

    Google Scholar 

  7. Rocke E, Tompa M. An Algorithm for Finding Novel Gapped Motifs in DNA Sequences. In: Proceedings of the Second Annual International Conference on Computational Molecular Biology. New York, NY, USA: ACM: 1998. p. 228–33.

    Google Scholar 

  8. Sagot MF. Spelling Approximate Repeated or Common Motifs using a Suffix Tree. In: LATIN’98: Theoretical Informatics. Brazil: Springer: 1998. p. 374–90.

    Google Scholar 

  9. Lanctot JK, Li M, Ma B, Wang S, Zhang L. Distinguishing string selection problems. Inform Comput. 2003; 185(1):41–55.

    Article  Google Scholar 

  10. Adebiyi EF, Kaufmann M. Extracting Common Motifs under the Levenshtein Measure: Theory and Experimentation In: Guigó R, Gusfield D, editors. Algorithms in Bioinformatics: Second International Workshop, WABI 2002 Rome, Italy, September 17–21, 2002 Proceedings. Berlin, Heidelberg: Springer Berlin Heidelberg: 2002. p. 140–56.

    Google Scholar 

  11. Wang X, Miao Y. GAEM: A Hybrid Algorithm Incorporating GA with EM for Planted Edited Motif Finding Problem. Curr Bioinformatics. 2014; 9(5):463–9.

    Article  CAS  Google Scholar 

  12. Rajasekaran S, Balla S, Huang CH, Thapar V, Gryk M, Maciejewski M, Schiller M. High-performance Exact Algorithms for Motif Search. J Clin Monitoring Comput. 2005; 19(4–5):319–28.

    Article  Google Scholar 

  13. Pathak S, Rajasekaran S, Nicolae M. EMS1: An Elegant Algorithm for Edit Distance Based Motif Search. Int J Foundations Comput Sci. 2013; 24(04):473–86.

    Article  Google Scholar 

  14. Knuth DE. The Art of Computer Programming, Volume 4, Generating All Tuples and Permutations, Fascicle 2. New Jersey, USA: Addison Wesley; 2005.

    Google Scholar 

Download references

Acknowledgments

This work has been supported in part by the NIH grant R01-LM010101 and NSF grant 1447711.

Declarations

Publication of this article was funded by the NIH grant R01-LM010101 and NSF grant 1447711. This article has been published as part of BMC Genomics Vol 17 Suppl 4 2016: Selected articles from the IEEE International Conference on Bioinformatics and Biomedicine 2015: genomics. The full contents of the supplement are available online at https://github.com/soumitrakp/ems2.git.

Availability

A C++ based implementation of our algorithm can be found at the following github public repository:

https://github.com/soumitrakp/ems2.git.

Authors’ contributions

SP and SR conceived the study. SP implemented the algorithms and PX carried out the experiments. SP and SR analyzed the results and wrote the paper. All authors reviewed the manuscript. All authors read and approved the final manuscript.

Competing interests

The authors declare that they have no competing interests.

Author information

Authors and Affiliations

Authors

Corresponding author

Correspondence to Sanguthevar Rajasekaran.

Additional file

Additional file 1

Expected number of spurious motifs. This file gives the expression for the expected number of spurious (l,d)-motifs in n random strings of length m from the alphabet Σ. (PDF 143 kb)

Rights and permissions

Open Access This article is distributed under the terms of the Creative Commons Attribution 4.0 International License (http://creativecommons.org/licenses/by/4.0/), which permits unrestricted use, distribution, and reproduction in any medium, provided you give appropriate credit to the original author(s) and the source, provide a link to the Creative Commons license, and indicate if changes were made. The Creative Commons Public Domain Dedication waiver (http://creativecommons.org/publicdomain/zero/1.0/) applies to the data made available in this article, unless otherwise stated.

Reprints and permissions

About this article

Check for updates. Verify currency and authenticity via CrossMark

Cite this article

Pal, S., Xiao, P. & Rajasekaran, S. Efficient sequential and parallel algorithms for finding edit distance based motifs. BMC Genomics 17 (Suppl 4), 465 (2016). https://0-doi-org.brum.beds.ac.uk/10.1186/s12864-016-2789-9

Download citation

  • Published:

  • DOI: https://0-doi-org.brum.beds.ac.uk/10.1186/s12864-016-2789-9

Keywords