Literature DB >> 23281969

A hybrid method for the exact planted (l, d) motif finding problem and its parallelization.

Mostafa M Abbas1, Mohamed Abouelhoda, Hazem M Bahig.   

Abstract

BACKGROUND: Given a set of DNA sequences s1, ..., st, the (l, d) motif problem is to find an l-length motif sequence M , not necessary existing in any of the input sequences, such that for each sequence si, 1 ≤ i ≤ t, there is at least one subsequence differing with at most d mismatches from M. Many exact algorithms have been developed to solve the motif finding problem in the last three decades. However, the problem is still challenging and its solution is limited to small values of l and d.
RESULTS: In this paper we present a new efficient method to improve the performance of the exact algorithms for the motif finding problem. Our method is composed of two main steps: First, we process q ≤ t sequences to find candidate motifs. Second, the candidate motifs are searched in the remaining sequences. For both steps, we use the best available algorithms. Our method is a hybrid one, because it integrates currently existing algorithms to achieve the best running time. In this paper, we show how the optimal value of q is determined to achieve the best running time. Our experimental results show that there is about 24% speed-up achieved by our method compared to the best existing algorithm. Furthermore, we also present a parallel version of our method running on shared memory architecture. Our experiments show that the performance of our algorithm scales linearly with the number of processors. Using the parallel version, we were able to solve the (21, 8) challenging instance using 8 processors in 20.42 hours instead of 6.68 days of the serial version.
CONCLUSIONS: Our method speeds up the solution of the exact motif problem. Our method is generic, because it can accommodate any new faster algorithm based on traditional methods. We expect that our method will help to discover longer motifs. The software we developed is available for free for academic research at http://www.nubios.nileu.edu.eg/tools/hymotif.

Entities:  

Mesh:

Year:  2012        PMID: 23281969      PMCID: PMC3521218          DOI: 10.1186/1471-2105-13-S17-S10

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


Background

DNA motifs are short sequences in the genome that play important functional roles in gene regulation. Due to their short length, it is difficult to identify these regions using features intrinsic in their composition. Assuming that the motifs are conserved in closely related species due to the importance of their function, it is possible to discover them by comparing the respective DNA sequences to identify the sub-sequences that are very similar to each other. There are two common combinatorial formulations that identify the motifs: The first is the consensus motif problem which made its first appearance in 1984 [1], while the second is the planted (l, d)-motif problem that was presented in 2000 [2]. It is worth noting that the latter formulation is a special case of the former. The exact definitions are as follows: Given a set of t sequences swhere 1 ≤ i ≤ t defined over an alphabet ∑. The consensus motif problem is to find an l-length motif sequence M such that in each sequence s, 1 ≤ i ≤ t, there is at least one subsequence pdiffering with at most d mismatches from M; i.e., d≤ d, where dis the hamming distance between pand M. The planted (l, d) motif problem is a special case of the consensus problem in which we restrict that poccurs only once in s. Due to its combinatorial nature, the consensus motif problem and its variant defined above is extremely challenging. Over a benchmark data of 20 sequences, each of length 600 characters, large instances of (15, 5), (17, 6), (19, 7) and (21, 8) have been addressed and many algorithms have been developed to solve them one after another. These algorithms can be classified into two major categories: approximation algorithms [2-12] and exact algorithms [13-30]. Approximation algorithms are based on probabilistic local search techniques, such as Gibbs Sampling, Expectation Maximization, etc. Although these algorithms may solve the challenging instances in practice, there is no guarantee that the motif can be found even when l is short. Exact algorithms are based on exhaustive search techniques. The brute force algorithm proceeds by testing all possible motifs of length l using pattern matching, leading to O (l n t 4) time complexity. This algorithm, however, is not suitable for discovering long motifs in practice, and many algorithms have been developed to provide faster solutions. Examples of these algorithms are CENSUS [23], PMS1 [26], PMSP [27], PMSprune [29], PMS5 [30], SMILE [19], RISO [24], RISOTTO [28], and Voting [25]. In the following we briefly review the most efficient ones and the ones related to our work. The algorithms SMILE [19], RISO [24], and RISOTTO [28] are based on the use of suffix tree. The time complexity of these algorithms is the same and it is O(t2Nv(l, d)), where is the size of the d-mismatch neighbourhood of motifs of length l and , nis the length of sequence i from input sequences. RISOTTO improved the time complexity of SMILE and RISO in the average case and solved some challenging instances such as (15, 5) and (17, 6). PMSP [27] is based on exploring the neighbourhood of the l-mer of the first sequence and checking whether the elements of such neighbourhoods are (l, d) motifs. The time complexity is . It is able to solve some challenging instances such as (15, 5) and (17, 6). PMSprune [29,31] is an improved version of the PMSP algorithm, based on the branch and bound strategy. Although it has the same worst-case time complexity as PMSP algorithm, it is more efficient in practice and it could tackle the (17, 6) and (19, 7) instances for the first time. PMS5 [30] is based on computing the common d-neighbourhood of three l-mers using integer programming formulation. It combines this novel idea with the algorithms PMS1 and PMSPrune. PMS5 can tackle the large challenging instances (19, 7), (21, 8) and (23, 9). The only drawback of PMS5, it requires larger amount of internal memory to finish computation.

Our contribution

In a previous work [32,33], we have introduced an idea composed of two stages to speed up the exact algorithms: In the first stage, we generate a set of candidate motifs by applying one of the exact algorithms based on the neighbourhood method (like Voting [25] or PMSP [27] algorithms) using q ≤ t sequences. In the second stage, for each candidate motif we check if it is a valid motif or not using pattern matching on the reminder (t - q) sequences. This dramatically reduces the search space and leads to significant speed up. The bottleneck in this approach, however, was the determination of the q value that yields the fastest running time. That is, the user has to guess the value of q, which might lead to non-optimal running time and even no speed up compared to the traditional methods. Also, the authors in [34] have used the same idea on PMS1, RISOTTO, and PMSprune algorithms. In this paper, we present a theoretical method which can be used to determine the appropriate value of q. Then we apply this strategy on PMSprune algorithm and solve some big challenging instances such as (21, 8). Furthermore, we propose a parallel version of our algorithm to present a practical solution to the challenging instances of the motif problem. Our parallel version further speeds up the solution of the (21, 8) instance.

Definitions and related work

In this section, we introduce some notations and definitions that will help us to describe our algorithm and related work in a concise manner. Definition 1 adapted from [29]: For any string x, with |x| = l, let B(x) = {y: |y| = l, d(y, x) ≤ d}, where ddenotes the Hamming distance and B(x) denotes the set of neighbourhoods of x. We also write v(l, d) to refer to |B(x)|. Definition 2 adapted from [29]: Let s denote a string of length n and let x denote another string of length l, l Definition 3 adapted from [29]: Given an l-length string x and a set of strings S = {s1, ..., s} with |s| = n for i = 1, ..., t and l Definition 4 adapted from [29]:A string x is an (l, d) motif for a set of sequences S = {s1, ..., s}, if: 1) 2) Proposition 1 adapted from [10]: Let u and v be two random strings of length l over an alphabet of 4 characters with equal probability of occurrence. The probability pthat d(u, v) ≤ d is , and the probability that is (1-(1-p)). The expected number of l-length motifs that occur at least once in each of the t sequences with up to d substitutions is E(l, d, t, n) = 4(1-(1-p)).

PMSprune Algorithm

Because the first stage of our method will depend on the PMSprune algorithm. We will review the basic steps of it in the notions presented above. The main strategy of PMSprune is to generate B(y), for every l-mer y in s1, using a branch and bound technique. An element x∈B(y) is a motif only if . The step of verifying that is achieved by scanning all substrings of S. For fixed values of t, n, and l, the expected time complexity of PMSprune is equal to where p2is the probability that the hamming distance between two strings is at most 2d, and it is defined in Proposition 1. For fixed values of t, n, and l, value d' was estimated such that the probability of is close to 1. (The probability of is given in Proposition 1 and it is ).

Implementation

Our proposed strategy

Our new strategy, referred to as hybrid exact pattern motif search (HEP), is composed of three steps: first, we determine the value q, corresponding to the size of a subset of input sequences, as explained below. Second, we apply an exact exhaustive algorithm £ (like, PMSprune) on the set of q sequences to find the set of d-neighbourhood B(x) (review definition 1 for exact definition of d-neighbourhood). We call this set the candidate motif set. Finally, we apply a pattern search algorithm over the remaining sequences to verify each motif. Note that our algorithm is generic in the sense that it takes the program £ also as input in addition to the input sequences and user parameters. A pseudo code for this strategy using the exact algorithm £ is as follows: Algorithm 2: HEP (£, s1,..., s) Begin 1) Determine the number of sequences q using the method given below. 2) Implement the exact algorithm £ on q input sequences. Let C be the set of candidate motifs found in the q sequences. 3) For each pattern v in C, check if v is a valid motif or not in the reminder (t - q) input sequences using pattern matching Algorithm. End. Theorem 1: Algorithm 2 correctly finds all (l, d) motifs in a given t input sequences. Proof: Step 2 of the algorithm is exhaustive and finds the whole set of d-neighborhood for the q sequences. Therefore, and by definition of the (l, d) motif problem, any (l, d) motif belongs to this set, even if q = 1. In Step 3, each candidate motif is verified by comparison to each substring in the remaining sequences. This step is conducted by an approximate pattern matching algorithm for each l-length substring in the candidate motif set and each l-length substring in the remaining sequences such that the hamming distance between these two substrings is ≤ d. This guarantees that no motif is missing. Theorem 2: The running time of the HEP is equal to where Tis the running time of step 2 involving the use of an exact algorithm £ on the q input sequences and l(t - q) (n - l + 1) E(l, d, q, n) is the running time of step 3 such that E(l, d, q, n) is the number of elements in the set C, which is estimated to be 4l(1- (1 - p)). Note that the complexity of step 1 takes constant time, as we will explain below. Note that the running time of the brute force algorithm is acquired if q = 0 in equation 2. The running time of the exact algorithm £ is acquired if q = t in equation 2.

Determination of the best q

The range of the number of sequences q, enhancing the performance of the exact motif finding problem is calculated by solving the following inequality for the parameter q: Definition 5: We define mns as the minimum number of sequences q that yields better running time; i.e., the first value of q that verifies the inequality. We also define ons as the optimal number of sequences q that yields the best running time; i.e., the value of q such that Tis minimum over 1 ≤ q ≤ t.

Implementing HEP based on PMSprune

We decided to use PMSprune for implementing the first step in our method, because of its superiority compared to other algorithms as discussed in [31]. However, we stress that our approach is generic and can be used with any better algorithm that appears in future. In the following, we will refer to our method based on PMSprune as HEP_PMSprune. If q = mns we will denote it with HEP_PMSprune(mns), and if q = ons we will denote it with HEP_PMSprune(ons).

Determining mns for PMSprune

Replacing Tby the time of PMSprune on q sequences, Equations (1) and (2) can be rewritten as follows: Replacing Twith Tand T£ with Tin the inequality (3)results in the following variation: Substituting the value of E(l, d, q, n) with the value given in Proposition 1 in the left hand side yields Dividing both sides by 4and taking the logarithm, The inequality (4) provides the range of the values of q that makes the running time of HEP using PMSprune less than the running time of the original PMSprune over the all set of sequences. The minimum value of q in the range of the inequality is called mns and it is equal to:

Determining ons for PMSprune

For fixed values of t, n, l and d, ons can be calculated for PMSprune by selecting the value of q that minimizes the total number of operations Tfor 1 ≤ q ≤ t. The following algorithm computes the value of ons for each instance (l, d). Algorithm 3: Find ons Begin 1) q = ons = 1 2) 3) 4) for q = mns to t do if T Tmin = T ons = q 5) return ons End The above algorithm computes q in O(t) time. In practice, the time for computing q takes negligible time with respect to the rest of motif finding steps; it took maximum one second for all experiments included in this paper with simulated and real datasets. To save some time, our implementation includes a look-up table containing pre-computed values of q for different values of l, n, and d, where l < 20, d < 3, and selected values of n with n = 300, n = 350, 400, ..., n = 700. For other values of l, n, and d, we compute the best q using the above algorithm.

Parallel version of HEP_PMSprune(ons)

We propose a parallel version for HEP_PMSprune(ons) called PHEP_PMSprune(ons). The two main steps of HEP_PMSprune(ons) can be parallelized as follows: We parallelize the PMSprune algorithm by assigning a set of l-mers from s1 to each processor for establishing the set of neighboring motifs. The resulting sets are stored in candidate motif lists C∈ {1, 2, ..., p}, where p is the number of processors. After each processor finishes computation, the Clists are merged together in a larger set C, such that each motif is represented once in this list; i.e., all repetitions are removed. Creating the C list is done in linear time with respect to the number of candidate motifs and it is achieved as follows: We incrementally construct the partial list Cthat contains the Llists, 1 ≤ j ≤ p, by appending the list Lat the end of the list Csuch that all elements in Lexisting in Care discarded. This continues until j = p; i.e., Cis C. Discarding a repeated element is done efficiently as follows: For small values of l, we create a look-up table with size Σ, where Σ is the alphabet size. Each possible l-length string can be mapped to a number in the range between zero and Σin O(l) time. The ith entry in this table contains one if a string in Cis mapped to i. Otherwise, it contains zero. The strings in Care queried against this look-up table to discard repetitions and set entries they are mapped to with value one. For longer values of l, we use the Aho-Corasick automaton to index all l-length motifs in C, and check if a strings in Cexists in the automaton or not and add the new strings of Cto the automaton. For these string matching algorithms, we refer the reader to [35]. In the second step, we validate each candidate motif independently in parallel over the available processors. The running time of this algorithm is O(Ts/p +|C|), where Tis the sequential running time and |C| is the size of set C. The first step in the parallel algorithm does not lead to loss of any motifs. This is because the set C includes the d-neighborhood set of the q-sequences. The reason is that we run PMSprune in parallel against the strings (x, s2, s3, ..., s), where x is a substring of s1. That is, each substring is not processed. The second step in the parallel algorithm is also correct, because the elements in C are independent of each other and checking the validity of each candidate motif can be safely run in parallel. Our experimental results confirm the correctness of our parallelization procedure.

Results and discussion

Experiments on simulated datasets

We used the simulated data sets that are used in many articles [25-30,32-34] with t = 20 sequences and n = 600 characters, where the alphabet size is 4. Each (l, d) input instance dataset is generated as follows: We generate random strings with length (n-l) each, where the characters appear randomly with equal probability. Then we generate randomly an l-length string M and plant a copy of it in each sequence at random position after mutating it with at most d random mutations. We tested the algorithms for varying n, l, and d values and for the following challenging instances: (11, 3), (13, 4), (15, 5), (17, 6), (19, 7), and (21, 8).

Experiments overview

Our experiments address three major issues: The first is the performance of our method compared to the use of PMSprune only. The second, we show that our method for selecting q, already achieves the best running time. The third is the performance of the parallel version and its scalability. The algorithms are implemented on a 2 Quad-core processors (2.5 GHz each) machine. The programs are coded in C language. In the parallel version, we use openMP directives for parallelizing the code.

Performance of HEP on PMSprune

Tables 1 and 2 show the performance of the algorithms HEP_PMSprune(mns) and HEP_PMSprune(ons) with respect to PMSprune algorithm respectively. The last column in Tables 1 and 2 displays the improvement in PMSprune which equals to and respectively. We used the notations 's', 'm', 'h', and 'dy' in computing the time for seconds, minutes, hours, and days, respectively. The results confirm that, the algorithms HEP_PMSprune(mns) and HEP_PMSprune(ons) significantly reduced the running time compared to the standard PMSprune algorithm in all challenging instances.
Table 1

Time Comparison of PMSPrune and HEP_PMSprune(mns) with the Challenging Instances

ldTPMSprunemnsTHEP_PMSprune(mns)Improvement
1131.92 s91.4 s27.1 %
13433.95 s726.05 s23.27 %
1557.7 m66.4 m16.8 %
1761.55 h71.26 h18.5 %
19718.62 h614.93 h19.8 %
2188.59 dy66.68 dy22.23 %
Table 2

Time Comparison of PMSPrune and HEP_PMSprune(ons) with the Challenging Instances

lDTPMSpruneonsTHEP_PMSprune(ons)Improvement
1131.92 s101.34 s30 %
13433.95 s924.55 s27.69 %
1557.7 m76.02 m21.8 %
1761.55 h81.26 h18.65 %
19718.62 h714.39 h22.74 %
2188.59 dy66.68 dy22.23 %
Time Comparison of PMSPrune and HEP_PMSprune(mns) with the Challenging Instances Time Comparison of PMSPrune and HEP_PMSprune(ons) with the Challenging Instances

Evaluating the choice of q

In this section, we experimentally evaluate our algorithm for determining the best q that minimizes the running time of the HEP_PMSprune(q) algorithm. To achieve this, we will follow the following steps: 1. We run HEP_PMSprune(q), mns ≤ q ≤ t for the problem instances (11, 3), (13, 4), (15, 5), (17, 6), (19, 7), and (21, 8) and determine the value of q that minimizes the running time; we will refer to this value with onsexp. 2. Compare the onsexp against our ons computed theoretically. Figure 1, which plots the running time against different q values, shows the results of applying these steps. We observe the value of ons is equal or very close to the value of onsexp.
Figure 1

Performance of our method for different challenging instances. Behavior of HEP_PMSprune(q) for different (l, d) instances such that q ∈{mns,..., t}. (a): (11, 3), (b): (13, 4), (c): (15, 5), (d): (17, 6), (e): (19, 7). We used the following remarks in the figures: 1) Black-triangle-down to indicate the runing time of HEP_PMSprune(mns). 2) Black-star to indicate the running time of PMSprune or HEP_PMSprune(t). 3) White-box to indicate the running time of HEP_PMSprune(ons); i.e., using theoretically estimated q.

Performance of our method for different challenging instances. Behavior of HEP_PMSprune(q) for different (l, d) instances such that q ∈{mns,..., t}. (a): (11, 3), (b): (13, 4), (c): (15, 5), (d): (17, 6), (e): (19, 7). We used the following remarks in the figures: 1) Black-triangle-down to indicate the runing time of HEP_PMSprune(mns). 2) Black-star to indicate the running time of PMSprune or HEP_PMSprune(t). 3) White-box to indicate the running time of HEP_PMSprune(ons); i.e., using theoretically estimated q. We also conducted another experiment, where the problem instances were generated with different n and l and d. Table 3 shows the results for many of these instances, where the number of sequences t = 20. We can observe that our algorithm finds the optimal q in all these instances. We also observe improvement of the running time with respect to the PMSprune algorithm in most of the cases. The cases with no improvement in the running time are attributed to the fact that the expected number of motifs is very low and the original algorithm runs already fast in these cases.
Table 3

The performance of the HEP_PMSprune(ons) for different values of n and l

nd lonsT_onsons_expT_onsexpT_pms
30031190.00013-200.00010.0001
600311101.34101.341.92
90031114411-1645
12003111771778
15003112016201616

30031260.054-200.050.05
60031280.834-200.830.83
90031281.56-201.51.5
1200312936-1534
15003121058-1257

300413735-2033
600413924.55924.5533.95
90041311811181109
12004131419014190217
15004131735317-19356360

300414614-2011
60041476.57-186.57
900414821.58-921.524
120041485485467
150041491079107146

30041550.254--200.250.25
60041551.254-201.251.25
900415655-2055
120041561281013
1500415716.57-1316.520

300416+50.0023-200.0020.002
600416+50.254-200.250.25
900416+514-2011
1200416+62.345-202.342.34
1500416+6-84.895-204.894.89

3005157386-103846
6005158361.28360462
90051591250912501847
12005151129761129764060
15005151358291358296969

300517525-2022
60051762713-201919
90051751037-209292
120051762316-8224264
150051764396-8439552

300518+515-2011
600518+656-2044
900518+6-7146-201414
1200518+6-7336-203333
1500518+6-8746-207474

The first column includes the sequence length n, the second includes the hamming distance d, and the third includes the motif length l. The entries l+, means greater than l leads to no improvement. 'ons' stands for the theoretically computed q, while "ons_exp" stands for the experimentally found one. We report range of ons_exp that yielded best time. There also range of ons for l+. "T_ons" and "T_onsstand for the times (in seconds) with ons and ons_exp, respectively. "T_pms" stands for the time with the original PMSprune algorithm only.

The performance of the HEP_PMSprune(ons) for different values of n and l The first column includes the sequence length n, the second includes the hamming distance d, and the third includes the motif length l. The entries l+, means greater than l leads to no improvement. 'ons' stands for the theoretically computed q, while "ons_exp" stands for the experimentally found one. We report range of ons_exp that yielded best time. There also range of ons for l+. "T_ons" and "T_onsstand for the times (in seconds) with ons and ons_exp, respectively. "T_pms" stands for the time with the original PMSprune algorithm only. Note that it was not feasible to list the results for all possible values n, l, and d in Table 3. But in other instances with different values of n, l, and d, we found that ons and its time were consistent with onsexp and its time published in this table.

Performance of PHEP_PMSprune(ons)algorithm

In Table 4, we show the results of applying the parallel version of our algorithm PHEP_PMSprune(ons) using different number of processors and for different problem instances. The running time of the difficult instance (21, 8) has been decreased from 6.68 days to about 20.42 hours using 8 processors. Figure 2 shows the scalability results for the algorithm where . From Table 4 and Figure 2 we note that PHEP_PMSprune(ons) reduce the time of HEP_PMSprune(ons) and the speedup achieved scales well with the increasing number of processors.
Table 4

Running time of PHEP_PMSprune(ons) using different number of processors p for some challenging instances

ldTime
P = 2P = 3P =4P = 5P = 6P = 7P = 8
13424.86 s12.4 s8.35 s6.1 s4.95 s4.35 s3.6 s3.2 s
1556.34 m3.19 m2.13 m1.61 m1.28 m1.07 m55.2 s48.5 s
1761.28 h38.28 m25.58 m19.16 m15.34 m12.81 m10.98 m9.61 m
19714.56 h7.24 h4.81 h3.61 h2.98 h2.42 h2.07 h1.82 h
2186.68 dy3.33 dy2.23 dy1.67 dy1.34 dy1.12 dy23.18 h20.42 h
Figure 2

Scalability plot of the parallel version. The plots show speed-up for different number of processors and problem instances.

Running time of PHEP_PMSprune(ons) using different number of processors p for some challenging instances Scalability plot of the parallel version. The plots show speed-up for different number of processors and problem instances.

Experiments on real datasets

We used two collections of real datasets used in previous research papers [10,26,29,36]. The first collection is a dataset including a number of the upstream regions of yeast genes [37] affected by certain transcription factors. The transcription factors are from the SCPD [38] database and the paper [39]. The upstream DNA sequences were extracted using the Saccharomyces Genome Database [37]. The second collection includes the dataset of Blanchette [36] which includes the upstream DNA regions of many genes from different species. This dataset is available at http://bio.cs.washington.edu/supplements/FootPrinter and a copy of it is available with our software tool for testing. Tables 5 and 6 show the motifs found by our method compared to the published ones for both collections. In each table, we give a reference to the published motif. Our program could detect all published motifs. It is also interesting to note that our program could detect extra novel motifs in the case of the Interleukin-3 problem instance in Table 6. These motifs look interesting, because they are 20 bp long with hamming distance zero; an observation that calls for further biological investigation.
Table 5

Application of the PHEP_PMSprune(ons) on the real yeast dataset

Transcription FactorGenesDetected motif (s) & parametersPublished Motif (s) & reference(s)Time
PHO4 (600 bp)PHO5, PHO8, PHO81, PHO84,CACGTG (6,0)CACGT[G|T] [38]38 (5%)

HSE_HSTF(600 bp)SSA1, HSP26, SSA4, HSC82, SIS1, CUP1-1TTCAGTGAA(9,2)TTCNNGAA [38]TTCNNNGAA [38]37 (35%)

PDR(600 bp)PDR3, SNQ2,PDR15, HXT9, HXT11, PDR5,YOR1TCCGTGGA(8,1)TCCGCGGA(8,1)TCCG[C|T]GGA [38]27(13%)

MCB(600 bp)CDC2, CDC9,CDC6, CLN1,POL1, CDC21ACGCGT(6,0)[A|T]CGCG[A|T] [38]31(20%)

ECB(600 bp)SWI4, MCM5MCM7, CDC6CLN3TTTCCCATTAAGGAAA (16,3)TTtCCcnntnaGGAAA [10,39]41(49%)

The first column includes the transcriptional factors (regulatory elements) and the length of upstream sequences. The second column includes the regulated genes. The first three factors and their related genes are available at the SCPD [38]. The ECB is the early-cell-cycle-box promoter region described in [39] and we extracted its related genes from the Yeast Genome Database [37]. The third column includes the motif detected by our tool and the respective parameters (l, d). The fourth column includes the published motifs and their references. The final column includes the running time in seconds needed to run our program in the parameter range from (6, 0) until (21, 3), i.e., there are 64 invocation of our program. The percentages in brackets refer to percentage improvements in rum time compared to PMSprune method.

Table 6

Application of the PHEP_PMSprune(ons) on the Blanchette real dataset

DNA regionSeq.no. Detected motifPublished MotifTime
Insulin family5' promoter(500 bp)8CCTCAGCCCC (10, 1)CCTCAGCCCC [10,40]87(10%)

AAGACTCTAA (10,2)AAGACTCTAA [36,40]

GCCATCTGCC (10,1)GCCATCTGCC [36,40]

CTATAAAG (8,0)CTATAAAG [36, GB]

GGGAAATG (8,1)GGGAAATG [36,40]

Metallothionein5'UTR+Promoter(590 bp)26TTTGCACACGC (11,3)TTTGCACACG [36,40]7.87(1%)

TGCACAC (7,1)TGCACACGG [36,40]

Interleukin-3 5'UTR+Promoter490 bp6TTGAGTACT (9,2)TTGAGTACT [36,40]
GATGAATAAT (10,1)GATGAATAAT [36,40]
TCTTCAGAG, (9,2)TCTTCAGAG [36,40]
AGGACCAG, (8,1)AGGACCAG [36,40]466(10%)
AGGTTCCATGTCAGATAAAG,ATGGAGGTTCCATGTCAGAT,CTATGGAGGTTCCATGTCAG,GAGGTTCCATGTCAGATAAA,GGAGGTTCCATGTCAGATAA,TATGGAGGTTCCATGTCAGA,TGGAGGTTCCATGTCAGATA,all these motifs found with (20,0) Novel

Growth-hormone5'UTR+promoter(380 bp)16AACTTATCCAT (11,3)ATTATCCAT [36,40]3.43(0%)

ATAAATGTAAA (11,3)ATAAATGTA [36,40]

TATAAAAAG (9,2)TATAAAAAG [36,40]

c-fos5' UTR+promoter(800bp)6CCATATTAGGAC (12,3)CCATATTAGGACATCT [10,41]350(15%)

GAGTTGGCTGC (11,3)GAGTTGGCTG [36]

CACAGGATGT (10,2)CACAGGATGT [36,40]

AGGACATCTGCT (12,3)AGGACATCTG [36,40]

c-myc5'+promoter(100bp)7GTTTATTC (8,1)GTTTATTC [36]83.5(42%)

CTTGCTGGG (9,2)TTGCTGGG [36]

TGTTTACATC (10,2)TGTTTACATC [36,40]

CCCTCCCC (8,1)CCCTCCCC [36,40]

Histone H15'UTR+Promoter650 bp4CAATCACCAC, (10,2)CAATCACCAC, [36, GB]47.6(9%)

AAACAAAAGT (10,1)AAACAAAAGT, [36, GB]

The first column includes the gene family and the length of upstream sequences. The second column includes the number of sequences. The third column includes the motif detected by our tool and the respective parameters (l, d). The fourth column includes the published motifs and their references; "GB" stands for Genebank annotation. The final column includes the running time in seconds needed to run our program in the parameter range from (6,0) until (21,3), i.e., there are 64 invocation of our program. The percentages in brackets refer percentage improvements in rum time compared to PMSprune method.

Application of the PHEP_PMSprune(ons) on the real yeast dataset The first column includes the transcriptional factors (regulatory elements) and the length of upstream sequences. The second column includes the regulated genes. The first three factors and their related genes are available at the SCPD [38]. The ECB is the early-cell-cycle-box promoter region described in [39] and we extracted its related genes from the Yeast Genome Database [37]. The third column includes the motif detected by our tool and the respective parameters (l, d). The fourth column includes the published motifs and their references. The final column includes the running time in seconds needed to run our program in the parameter range from (6, 0) until (21, 3), i.e., there are 64 invocation of our program. The percentages in brackets refer to percentage improvements in rum time compared to PMSprune method. Application of the PHEP_PMSprune(ons) on the Blanchette real dataset The first column includes the gene family and the length of upstream sequences. The second column includes the number of sequences. The third column includes the motif detected by our tool and the respective parameters (l, d). The fourth column includes the published motifs and their references; "GB" stands for Genebank annotation. The final column includes the running time in seconds needed to run our program in the parameter range from (6,0) until (21,3), i.e., there are 64 invocation of our program. The percentages in brackets refer percentage improvements in rum time compared to PMSprune method. Tables 5 and 6 also include the running times (in seconds) of running our method for the listed problem instances and the improvement in time compared to the PMSprune method. The running time for one problem instance is the time needed to run our program in the (l, d) parameters range from (6, 0) until (21, 3), i.e., there are 64 invocations of our program. The results show that our program is superior to the PMSprune for large instances.

Conclusions

In this paper, we introduced an efficient method that can enhance the performance of exact algorithms for the motif finding problem. Our method depends on dividing the sequence space into two sets. Over the first set, we generate a set of candidate motifs. Then, we use the remaining set of sequences to verify if each candidate motif is a real one. The experimental results show that our method is superior to the best methods available so far and could tackle large problems like (21, 8). Finally, we introduced a scalable and efficient parallel version for the proposed method. Our tool is available for free for academic research at http://www.nubios.nileu.edu.eg/tools/hymotif.

Availability and requirements

Project name: hymotif. Project home page: http://www.nubios.nileu.edu.eg/tools/hymotif Operating system(s): Linux. Programming language: C. Other requirements: C/C++ libraries. License: GPL. Any restrictions to use by non-academics: No restrictions.

Competing interests

The authors declare that they have no competing interests.

Authors' contributions

All authors contributed to theoretical and practical developments which form the basis of HEP method. All authors wrote and approved the manuscript.
  31 in total

1.  A statistical method for finding transcription factor binding sites.

Authors:  S Sinha; M Tompa
Journal:  Proc Int Conf Intell Syst Mol Biol       Date:  2000

2.  Finding subtle motifs by branching from sample strings.

Authors:  Alkes Price; Sriram Ramabhadran; Pavel A Pevzner
Journal:  Bioinformatics       Date:  2003-10       Impact factor: 6.937

3.  An improved heuristic algorithm for finding motif signals in DNA sequences.

Authors:  Chao-Wen Huang; Wun-Shiun Lee; Sun-Yuan Hsieh
Journal:  IEEE/ACM Trans Comput Biol Bioinform       Date:  2011 Jul-Aug       Impact factor: 3.710

4.  Methods for discovering novel motifs in nucleic acid sequences.

Authors:  R Staden
Journal:  Comput Appl Biosci       Date:  1989-10

5.  Exact algorithms for planted motif problems.

Authors:  S Rajasekaran; S Balla; C-H Huang
Journal:  J Comput Biol       Date:  2005-10       Impact factor: 1.479

6.  An experimental comparison of PMSprune and other algorithms for motif search.

Authors:  Dolly Sharma; Sanguthevar Rajasekaran; Sudipta Pathak
Journal:  Int J Bioinform Res Appl       Date:  2014

7.  Pattern recognition in several sequences: consensus and alignment.

Authors:  M S Waterman; R Arratia; D J Galas
Journal:  Bull Math Biol       Date:  1984       Impact factor: 1.758

8.  PMS5: an efficient exact algorithm for the (ℓ, d)-motif finding problem.

Authors:  Hieu Dinh; Sanguthevar Rajasekaran; Vamsi K Kundeti
Journal:  BMC Bioinformatics       Date:  2011-10-24       Impact factor: 3.169

9.  Extracting regulatory sites from the upstream region of yeast genes by computational analysis of oligonucleotide frequencies.

Authors:  J van Helden; B André; J Collado-Vides
Journal:  J Mol Biol       Date:  1998-09-04       Impact factor: 5.469

10.  A speedup technique for (l, d)-motif finding algorithms.

Authors:  Sanguthevar Rajasekaran; Hieu Dinh
Journal:  BMC Res Notes       Date:  2011-03-08
View more
  4 in total

1.  InCoB2012 Conference: from biological data to knowledge to technological breakthroughs.

Authors:  Christian Schönbach; Sissades Tongsima; Jonathan Chan; Vladimir Brusic; Tin Wee Tan; Shoba Ranganathan
Journal:  BMC Bioinformatics       Date:  2012-12-13       Impact factor: 3.169

2.  Advances in translational bioinformatics and population genomics in the Asia-Pacific.

Authors:  Shoba Ranganathan; Sissades Tongsima; Jonathan Chan; Tin Wee Tan; Christian Schönbach
Journal:  BMC Genomics       Date:  2012-12-13       Impact factor: 3.969

3.  ChIP-seq predicted estrogen receptor biding sites in human breast cancer cell line MCF7.

Authors:  Qi Li; Huichun Wang; Leyang Yu; Jun Zhou; Jingde Chen; Xia Zhang; Lin Chen; Yong Gao; Qun Li
Journal:  Tumour Biol       Date:  2014-01-28

4.  Efficient sequential and parallel algorithms for planted motif search.

Authors:  Marius Nicolae; Sanguthevar Rajasekaran
Journal:  BMC Bioinformatics       Date:  2014-01-31       Impact factor: 3.169

  4 in total

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