Planted motif search

Last updated

In the field of computational biology, a planted motif search (PMS) also known as a (l, d)-motif search (LDMS) is a method for identifying conserved motifs within a set of nucleic acid or peptide sequences.

Contents

PMS is known to be NP-complete. The time complexities of most of the planted motif search algorithms depend exponentially on the alphabet size and l. The PMS problem was first introduced by Keich and Pevzner. [1]

The problem of identifying meaningful patterns (e.g., motifs) from biological data has been studied extensively since they play a vital role in understanding gene function, human disease, and may serve as therapeutic drug targets.

Description

The search problem may be summarized as follows:

Input are n strings (s1, s2, ... , sn) of length m each from an alphabet Σ and two integers l and d. Find all strings x such that |x| = l and every input string contains at least one variant of x at a Hamming distance of at most d. Each such x is referred to as an (l, d) motif.

For example, if the input strings are GCGCGAT, CACGTGA, and CGGTGCC; l = 3 and d = 1, then GGT is a motif of interest. Note that the first input string has GAT as a substring, the second input string has CGT as a substring, and the third input string has GGT as a substring. GAT is a variant of GGT that is within a Hamming distance of 1 from GGT, etc. Call the variants of a motif that occur in the input strings as instances of the motif. For example, GAT is an instance of the motif GGT that occurs in the first input string.

Zero or more (l, d) motifs are contained in any given set of input strings. Many of the known algorithms for PMS consider DNA strings for which Σ ={G, C, T, A}. There exist algorithms that deal with protein strings as well. The PMS problem is also known as the (l, d)-motif search (LDMS) problem.

Notation

The following mathematical notation is often used to describe PMS algorithms.

Assume that S = {s1, s2, s3, ..., sn} is the given set of input strings from an alphabet Σ. An l-mer of any string is nothing but a substring of the string of length l. Let dH(a, b) stand for the Hamming distance between any two l-mers a and b. Let a be an l-mer and s be an input string. Then, let dH(a, s) stand for the minimum Hamming distance between a and any l-mer b of s. If a is any l-mer and S is a set of input strings then let dH(a, S) stand for maxsєSdH(a, s). Let u be any l-mer. Then, the d-neighborhood of u, (denoted as Bd(u)), is nothing but the set of all the l-mers v such that dH(u, v)d. In other words, Bd(u)={v: dH(u, v)≤d}. Refer to any such l-mer v as a d-neighbor of u. Bd(x, y) is used to denote the common d-neighborhood of x and y, where x and y are two l-mers. Bd(x, y) is nothing but the set of all l-mers that are within a distance of d from both x and y. Similarly, Bd(x, y, z), etc. can be defined.

Algorithms

The scientific literature describes numerous algorithms for solving the PMS problem. These algorithms can be classified into two major types. Those algorithms that may not return the optimal answer(s) are referred to as approximation algorithms (or heuristic algorithms) and those that always return the optimal answer(s) are called exact algorithms.

Approximate

Examples of approximation (or heuristic) algorithms include Random Projection, [2] PatternBranching, [3] MULTIPROFILER, [1] CONSENSUS, [4] and ProfileBranching. [3] These algorithms have been experimentally demonstrated to perform well.

Random projection

The algorithm [2] is based on random projections. Let the motif M of interest be an l-mer and C be the collection of all the l-mers from all the n input strings. The algorithm projects these l-mers along k randomly chosen positions (for some appropriate value of k). The projection of each l-mer may be thought of as an integer. The projected values (which are k-mers) are grouped according to their integer values. In other words, hash all the l-mers using the k-mer of any l-mer as its hash value. All the l-mers that have the same hash value fall into the same hash bucket. Since the instances of any (l, d) motif are similar to each other, many of these instances will fall into the same bucket. Note that the Hamming distance between any two instances of an (l, d) motif is no more than 2d. The key idea of this algorithm is to examine those buckets that have a large number of l-mers in them. For each such bucket, an expectation maximization (EM) algorithm is used to check if an (l, d) motif can be found using the l-mers in the bucket.

Pattern branching

This algorithm [3] is a local searching algorithm. If u is any l-mer, then there are l-mers that are d-neighbors of u, for DNA strings. This algorithm starts from each l-mer u in the input, searches the neighbors of u, scores them appropriately and outputs the best scoring neighbor.

Exact

Many exact algorithms are known for solving the PMS problem as well. Examples include the ones in (Martinez 1983), [5] (Brazma, et al. 1998), [6] (Galas, et al. 1985), [7] (Sinha, et al. 2000), [8] (Staden 1989), [9] (Tompa 1999), [10] (Helden, et al. 1998) [11] (Rajasekaran, et al.), [12] (Davila and Rajasekaran 2006), [13] (Davila, Balla, and Rajasekaran 2006), [14] Voting [15] and RISOTTO. [16]

WINNOWER and SP-STAR

The WINNOWER algorithm [17] is a heuristic algorithm and it works as follows. If A and B are two instances of the same motif in two different input strings, then the Hamming distance between A and B is at most 2d. It can be shown that the expected Hamming distance between A and B is . WINNOWER constructs a collection C of all possible l-mers in the input. A graph G(V,E) is constructed in which each l-mer of C will be a node. Two nodes u and v in G are connected by an edge if and only if the Hamming distance between u and v is at most 2d and they come from two different input strings.

If M is an (l, d) motif and if M1, M2, ..., and Mn are instances of M in the input strings, then, clearly, these instances will form a clique in G. The WINNOWER algorithm has two phases. In the first phase, it identifies large cliques in G. In the second phase each such clique is examined to see if a motif can be extracted from this clique. Since the CLIQUE problem is intractable, WINNOWER uses a heuristic to solve CLIQUE. It iteratively constructs cliques of larger and larger sizes. If N = mn, then the run time of the algorithm is . This algorithm runs in a reasonable amount of time in practice especially for small values of d. Another algorithm called SP-STAR, [17] is faster than WINNOWER and uses less memory. WINNOWER algorithm treats all the edges of G equally without distinguishing between edges based on similarities. SP-STAR scores the l-mers of C as well as the edges of G appropriately and hence eliminates more edges than WINNOWER per iteration.

(Bailey and Elkan, 1994) [18] employs expectation maximization algorithms while Gibbs sampling is used by (Lawrence et al., 1993). [19] MULTIPROFILER [1] MEME, [20] are also known PMS algorithms.

PMS series

In the last decade a series of algorithms with PMS as a prefix has been developed in the lab of Rajasekaran. Some of these algorithms are described below.

PMS0

PMSo [12] works as follows. Let s1, s2, ..., sn be a given set of input strings each of length m. Let C be the collection of l-mers in s1. Let C′ = ∪u∈CBd(u). For each element v of C′ check if it is a valid (l, d)-motif or not. Given an l-mer v, a check if it is a valid (l, d)-motif or not can be made in O(mnl) time. Thus the run time of PMS0, assuming an alphabet of size 4, is .

PMS1

This algorithm [12] is based on radix sorting and has the following steps.

  1. Generate the set of all l-mers in each input string. Let Ci correspond to the l-mers of si, for 1≤in.
  2. For each l-mer u in Ci (1 < i < n), generate Bd(u). Let Li be a collection of all of these neighbors (corresponding to all the l-mers of si).
  3. Sort Li (using radix sort) and eliminate any duplicates.
  4. Compute :. This can be done by merging the lists L1, L2, ..., Ln. All the l-mers in this intersection are valid (l, d) motifs.
PMS2

Let the motif M of interest be of length l. If M occurs in every input string then any substring of M also occurs in every input string. Here occurrence means occurrence within a Hamming distance of d. It follows that there are at least l-k+1 strings each of length k (for kl) such that each of these occurs in every input string.

Let Q be a collection of k-mers in M. Note that, in every input string si, there will be at least one position ij such that a k-mer of Q occurs starting from ij. Another k-mer of Q occurs starting from ij +1 and so on, with the last k-mer occurring at ij + l – k. An l-mer can be obtained by combining these k-mers that occur starting from each such ij.

PMS2 [12] works as follows. In the first phase find all the (k, d) motifs present in all the input strings (for some appropriate value of k<l). In the second phase, look for (l-k+1) of these (k, d) motifs that occur starting from successive positions in each of the input strings. From every such collection of (l-k+1) (k, d)-motifs, l-mer can be generated (if possible). Each such l-mer is a candidate (l, d)-motif. For each candidate motif, check if it is an (l, d)-motif or not in O(mnl) time. This l-mer is returned as output if this is an (l, d)-motif.

PMS3

This algorithm [12] enables one to handle large values of d. Let d′=d/2. Let M be the motif to be found with |M|=l=2l′ for some integer l′. Let M1 refer to the first half of M and M2 be the next half. Let s= a1a2...am be one of the input strings. M occurs in every input string. Let the occurrence of M (within a Hamming distance of d) in s start at position i. Let s′=aiai+1...ai+l'-1 and s′′ =ai+l'...ai+l-1.

It is clear that either the Hamming distance between M1 and s′ is at most d′ or the Hamming distance between M2 and s′′ is at most d′. Either M1 or M2 occurs in every input string at a Hamming distance of at most d′. As a result, in at least n′ strings (where n′ = n/2) either M1 or M2 occurs with a Hamming distance of at most d.

The algorithm first obtains all the (l′, d′)-motifs that occur in at least n/2 of the input strings. It then uses these motifs and the above observations to identify all the (l, d)-motifs present in the input strings.

PMSPrune

This algorithm introduces a tree structure for the motif candidates and uses a branch-and-bound algorithm to reduce the search space. [21] Let S = {s1, s2, ..., sn} be a given set of input strings. PMSprune follows the same strategy as PMS0: For every l-mer y in s1, it generates the set of neighbors of y and, for each of them, checks whether this is a motif or not. Some key steps in the algorithm are:

  1. It generates the d-neighborhood of every l-mer y in s1 using a tree of height d. The root of this tree will have y. Every l-mer that is at a distance of 1 from y will be a node in the tree that is at a distance of 1 from the root; every l-mer that is at a distance of 2 from y will be a node in the tree that is at a distance of 2 from the root; and so on. When a node in this tree is visited, check if the corresponding l-mer is an (l, d)-motif. I.e., if the l-mer is x, check if dH(x, S)d. If so, output this l-mer. In any case move to the next node in the tree. This tree is explored in a depth first manner.
  2. If each node in the tree is visited for each l-mer y in s1, then the run time of PMSPrune will be at least as much as that of PMS0. PMSPrune uses some pruning conditions to prune subtrees that cannot possibly have any motifs in them.
  3. For an l-mer x, which corresponds to a node in a subtree of height h, the algorithm uses the value of dH(x, S) and h to prune the descendants of x.
  4. PMSPrune calculates the value of dH(x, S) for the nodes (x) in the tree in an incremental way, taking into account the way in which the neighborhood is generated.
PMS4

PMS4 [22] is a technique that can be used to speedup any algorithm for the PMS problem. In many of the above algorithms there are two phases. In the first phase we come up with a set of candidate motifs and in the second phase check, for each candidate motif, if it is a valid (l, d)-motif. For each candidate motif it takes O(mnl) time to check if it is a valid motif or not. PMS4 employs a similar two phase strategy. These phases are explained below. Let A be any PMS algorithm.

  1. Run the algorithm A on k input strings (where k < n). An optimal value of k can be determined empirically. The k strings may be picked in a number of ways. For example, they could be the first k strings, random k strings, and so on. Let C be the collection of (l, d)-motifs found in these k strings. Clearly, C is a superset of the (l, d)-motifs present in the n given input strings.
  2. for each l-mer v in C do
Check if v is a valid motif in O(mnl) time. If so, output v.
PMS5 and PMS6

PMS5 [23] is an extension of PMS0. If S = {s1, s2, ..., sn} is a set of strings (not necessarily of the same length), let denote the (l, d)-motifs present in S. Let S′ = {s2, s3, ..., sn}. PMS5 computes the (l, d)-motifs of S as . Here L refers to an l-mer.

One of the key steps in the algorithm is a subroutine to compute the common d-neighborhood of three l-mers. Let x, y, z be any three l-mers. To compute Bd(x, y, z), PMS5 represents Bd(x) as a tree Td(x). Each node in this tree represents an l-mer in Bd(x). The root of Td(x) stands for the l-mer x. Td(x) has a depth of d. Nodes of Td(x) are traversed in a depth-first manner. The node and the l-mer it represents may be used interchangeably. While the tree is traversed, any node t will be output if t is in . When any node t is visited, check if there is a descendent t′ of t such that t′ is in . Prune the subtree rooted at t if there is no such descendent. In PMS5, the problem of checking if t has any descendent that is in is formulated as an integer linear program (ILP) on ten variables. This ILP is solved in O(1) time. Solving the ILP instances is done as a preprocessing step and the results are stored in a lookup table.

Algorithm PMS6 [24] is an extension of PMS5 that improves the preprocessing step and also it uses efficient hashing techniques to store the lookup tables. As a result, it is typically faster than PMS5.

Shibdas Bandyopadhyay, Sartaj Sahni, Sanguthevar Rajasekaran, "PMS6: A fast algorithm for motif discovery," iccabs, pp. 1–6, 2012 IEEE 2nd International Conference on Computational Advances in Bio and medical Sciences, 2012

qPMSPrune and qPMS7

Given a set S={s1, s2, ..., sn} of strings, and integers l, d, and q, an (l, d, q)-motif is defined to be a string M of length l that occurs in at least q of the n input strings within a Hamming distance of d. The qPMS (Quorum Planted Motif Search) problem is to find all the (l, d, q)-motifs present in the input strings. The qPMS problem captures the nature of motifs more precisely than the PMS problem does because, in practice, some motifs may not have motif instances in all of the input strings. Any algorithm for solving the qPMS problem (when qn) is typically named with a prefix of q. qPMSPrune is one of the first algorithms to address this version of the PMS problem. [21] qPMSPrune exploits the following fact: If M is any (l, d, q)-motif of the input strings s1, s2, ..., sn, then there exists an i (with 1 ≤ inq + 1) and an l-mer such that M is in Bd(x) and M is an (l, d, q-1)-motif of the input strings excluding si. The algorithm processes every si, 1≤ in. While processing si, it considers every l-mer x of si. When considering x, it constructs Bd(x) and identifies elements of Bd(x) that are (l, d, q-1) motifs (with respect to input strings other than si). Bd(x) is represented as a tree with x as the root. This tree will be traversed in a depth first manner. The algorithm does not traverse the entire tree. Some of the subtrees are pruned using effective pruning conditions. In particular, a subtree is pruned if it can be inferred that none of the nodes in this subtree carries a motif of interest.

Algorithm qPMS7 [25] is an extension of qPMSPrune. Specifically, it is based on the following observation: If M is any (l, d, q)-motif of the input strings s1, s2, ..., sn, then there exist 1 ≤ ijn and l-mer and l-mer such that M is in and M is an (l, d, q-2)-motif of the input strings excluding si and sj. The algorithm considers every possible pair (i, j), 1≤ i, jn and ij. For any pair (i, j), every possible pair of l-mers (x, y) is considered (where x is from si and y is from sj). While considering any x and y, the algorithm identifies all the elements of that are (l, d, q-2) motifs (with respect to input strings other than si and sj). An acyclic graph is used to represent and explore . Call this graph Gd(x, y). Gd(x, y) is traversed in a depth first manner. Like in qPMSPrune, qPMS7 also employs some pruning conditions to prune subgraphs of Gd(x, y).

RISOTTO

RISOTTO [16] employs a suffix tree to identify the (l, d)-motifs. It is somewhat similar to PMS0. For every l-mer in s1, it generates the d-neighborhood and for every l-mer in this neighborhood it walks through a suffix tree to check if this l-mer is an (l, d)-motif. Voting [15] is similar to PMS1. Instead of using radix sorting, it uses hashing to compute Li's and their intersections.

Relative performance

PMS algorithms are typically tested on random benchmark data generated as follows: Twenty strings each of length 600 are generated randomly from the alphabet of interest. The motif M is also generated randomly and planted in each of the input strings within a Hamming distance of d. The motif instances are also generated randomly. Certain instances of the (l, d)-motif problem have been identified to be challenging. For a given value of l, the instance (l, d) is called challenging if d is the smallest integer for which the expected number of (l, d)-motifs that occur by random chance (in addition to the planted one) is one or more. For example, the following instances are challenging: (9, 2), (11, 3), (13, 4), (15, 5), (17, 6), (19, 7), etc. The performance of PMS algorithms is customarily shown only for challenging instances. Following is a table of time comparison of different PMS algorithms on the challenging instances of DNA sequences for the special case. This table is taken from the paper qPMS7. [25] In this table several algorithms have been compared: qPMSPrune, [21] qPMSPruneI, [25] Pampa, [26] Voting, [15] RISOTTO, [16] PMS5, [23] PMS6, [24] qPMS7. [25]

In the following table, the alphabet Σ={A,C,G,T}, n=20, m=600, and q=n=20.

TIME COMPARISON OF DIFFERENT PMS ALGORITHMS
Algorithm(13,4)(15,5)(17,6)(19,7)(21,8)(23,9)
qPMS747 s2.6 m11 m0.9 h4.3 h24 h
PMS667 s3.2 m14 m1.16 h5.8 h-
PMS5117 s4.8 m21.7 m1.7 h9.7 h54 h
qPMSPruneI17 s2.6 m22.6 m3.4 h29 h-
Pampa35 s6 m40 m4.8 h--
qPMSPrune45 s10.2 m78.7 m15.2 h--
Voting104 s21.6 m----
RISOTTO772 s106 m----

Related Research Articles

In computability theory, Rice's theorem states that all non-trivial semantic properties of programs are undecidable. A semantic property is one about the program's behavior, unlike a syntactic property. A property is non-trivial if it is neither true for every program, nor false for every program.

<span class="mw-page-title-main">Hamming distance</span> Number of bits that differ between two strings

In information theory, the Hamming distance between two strings or vectors of equal length is the number of positions at which the corresponding symbols are different. In other words, it measures the minimum number of substitutions required to change one string into the other, or equivalently, the minimum number of errors that could have transformed one string into the other. In a more general context, the Hamming distance is one of several string metrics for measuring the edit distance between two sequences. It is named after the American mathematician Richard Hamming.

In bioinformatics, neighbor joining is a bottom-up (agglomerative) clustering method for the creation of phylogenetic trees, created by Naruya Saitou and Masatoshi Nei in 1987. Usually based on DNA or protein sequence data, the algorithm requires knowledge of the distance between each pair of taxa to create the phylogenetic tree.

In information theory, linguistics, and computer science, the Levenshtein distance is a string metric for measuring the difference between two sequences. Informally, the Levenshtein distance between two words is the minimum number of single-character edits required to change one word into the other. It is named after the Soviet mathematician Vladimir Levenshtein, who considered this distance in 1965.

In computational linguistics and computer science, edit distance is a string metric, i.e. a way of quantifying how dissimilar two strings are to one another, that is measured by counting the minimum number of operations required to transform one string into the other. Edit distances find applications in natural language processing, where automatic spelling correction can determine candidate corrections for a misspelled word by selecting words from a dictionary that have a low distance to the word in question. In bioinformatics, it can be used to quantify the similarity of DNA sequences, which can be viewed as strings of the letters A, C, G and T.

<span class="mw-page-title-main">Deterministic finite automaton</span> Finite-state machine

In the theory of computation, a branch of theoretical computer science, a deterministic finite automaton (DFA)—also known as deterministic finite acceptor (DFA), deterministic finite-state machine (DFSM), or deterministic finite-state automaton (DFSA)—is a finite-state machine that accepts or rejects a given string of symbols, by running through a state sequence uniquely determined by the string. Deterministic refers to the uniqueness of the computation run. In search of the simplest models to capture finite-state machines, Warren McCulloch and Walter Pitts were among the first researchers to introduce a concept similar to finite automata in 1943.

<span class="mw-page-title-main">Suffix tree</span> Tree containing all suffixes of a given text

In computer science, a suffix tree is a compressed trie containing all the suffixes of the given text as their keys and positions in the text as their values. Suffix trees allow particularly fast implementations of many important string operations.

In computer science, a topological sort or topological ordering of a directed graph is a linear ordering of its vertices such that for every directed edge (u,v) from vertex u to vertex v, u comes before v in the ordering. For instance, the vertices of the graph may represent tasks to be performed, and the edges may represent constraints that one task must be performed before another; in this application, a topological ordering is just a valid sequence for the tasks. Precisely, a topological sort is a graph traversal in which each node v is visited only after all its dependencies are visited. A topological ordering is possible if and only if the graph has no directed cycles, that is, if it is a directed acyclic graph (DAG). Any DAG has at least one topological ordering, and algorithms are known for constructing a topological ordering of any DAG in linear time. Topological sorting has many applications, especially in ranking problems such as feedback arc set. Topological sorting is possible even when the DAG has disconnected components.

In computer science, the shortest common supersequence of two sequences X and Y is the shortest sequence which has X and Y as subsequences. This is a problem closely related to the longest common subsequence problem. Given two sequences X = < x1,...,xm > and Y = < y1,...,yn >, a sequence U = < u1,...,uk > is a common supersequence of X and Y if items can be removed from U to produce X and Y.

In mathematics and computing, universal hashing refers to selecting a hash function at random from a family of hash functions with a certain mathematical property. This guarantees a low number of collisions in expectation, even if the data is chosen by an adversary. Many universal families are known, and their evaluation is often very efficient. Universal hashing has numerous uses in computer science, for example in implementations of hash tables, randomized algorithms, and cryptography.

In computer science, locality-sensitive hashing (LSH) is a fuzzy hashing technique that hashes similar input items into the same "buckets" with high probability. Since similar items end up in the same buckets, this technique can be used for data clustering and nearest neighbor search. It differs from conventional hashing techniques in that hash collisions are maximized, not minimized. Alternatively, the technique can be seen as a way to reduce the dimensionality of high-dimensional data; high-dimensional input items can be reduced to low-dimensional versions while preserving relative distances between items.

In coding theory, list decoding is an alternative to unique decoding of error-correcting codes for large error rates. The notion was proposed by Elias in the 1950s. The main idea behind list decoding is that the decoding algorithm instead of outputting a single possible message outputs a list of possibilities one of which is correct. This allows for handling a greater number of errors than that allowed by unique decoding.

In statistics, single-linkage clustering is one of several methods of hierarchical clustering. It is based on grouping clusters in bottom-up fashion, at each step combining two clusters that contain the closest pair of elements not yet belonging to the same cluster as each other.

In theoretical computer science, the closest string is an NP-hard computational problem, which tries to find the geometrical center of a set of input strings.

A locally testable code is a type of error-correcting code for which it can be determined if a string is a word in that code by looking at a small number of bits of the string. In some situations, it is useful to know if the data is corrupted without decoding all of it so that appropriate action can be taken in response. For example, in communication, if the receiver encounters a corrupted code, it can request the data be re-sent, which could increase the accuracy of said data. Similarly, in data storage, these codes can allow for damaged data to be recovered and rewritten properly.

A locally decodable code (LDC) is an error-correcting code that allows a single bit of the original message to be decoded with high probability by only examining a small number of bits of a possibly corrupted codeword. This property could be useful, say, in a context where information is being transmitted over a noisy channel, and only a small subset of the data is required at a particular time and there is no need to decode the entire message at once. Note that locally decodable codes are not a subset of locally testable codes, though there is some overlap between the two.

In computer science, a ball tree, balltree or metric tree, is a space partitioning data structure for organizing points in a multi-dimensional space. A ball tree partitions data points into a nested set of balls. The resulting data structure has characteristics that make it useful for a number of applications, most notably nearest neighbor search.

Fuzzy extractors are a method that allows biometric data to be used as inputs to standard cryptographic techniques, to enhance computer security. "Fuzzy", in this context, refers to the fact that the fixed values required for cryptography will be extracted from values close to but not identical to the original key, without compromising the security required. One application is to encrypt and authenticate users records, using the biometric inputs of the user as a key.

In computational learning theory, induction of regular languages refers to the task of learning a formal description of a regular language from a given set of example strings. Although E. Mark Gold has shown that not every regular language can be learned this way, approaches have been investigated for a variety of subclasses. They are sketched in this article. For learning of more general grammars, see Grammar induction.

A central problem in algorithmic graph theory is the shortest path problem. One of the generalizations of the shortest path problem is known as the single-source-shortest-paths (SSSP) problem, which consists of finding the shortest paths from a source vertex to all other vertices in the graph. There are classical sequential algorithms which solve this problem, such as Dijkstra's algorithm. In this article, however, we present two parallel algorithms solving this problem.

References

  1. 1 2 3 Keich, U.; Pevzner, P. A. (October 2002). "Finding motifs in the twilight zone". Bioinformatics. 18 (10): 1374–1381. doi: 10.1093/bioinformatics/18.10.1374 . PMID   12376382.
  2. 1 2 Buhler, J.; Tompa, M. (2002). "Finding motifs using random projections". J. Comput. Biol. 9 (2): 225–242. CiteSeerX   10.1.1.26.2491 . doi:10.1089/10665270252935430. PMID   12015879.
  3. 1 2 3 Price, A.; Ramabhadran, S.; Pevzner, P. A. (October 2003). "Finding subtle motifs by branching from sample strings". Bioinformatics. 19 (Suppl 2): ii149–55. doi: 10.1093/bioinformatics/btg1072 . PMID   14534184.
  4. Hertz, G. Z.; Stormo, G. D. (1999). "Identifying DNA and protein patterns with statistically significant alignments of multiple sequences". Bioinformatics. 15 (7–8): 563–77. doi: 10.1093/bioinformatics/15.7.563 . PMID   10487864.
  5. Martinez, H. M. (July 1983). "An efficient method for finding repeats in molecular sequences". Nucleic Acids Res. 11 (13): 4629–4634. doi:10.1093/nar/11.13.4629. PMC   326069 . PMID   6866775.
  6. Brazma, A.; Jonassen, I.; Vilo, J.; Ukkonen, E. (November 1998). "Predicting gene regulatory elements in silico on a genomic scale". Genome Res. 8 (11): 1202–1215. doi:10.1101/gr.8.11.1202. PMC   310790 . PMID   9847082.
  7. Galas, D. J.; Eggert, M.; Waterman, M. S. (November 1985). "Rigorous pattern-recognition methods for DNA sequences. Analysis of promoter sequences from Escherichia coli". J. Mol. Biol. 186 (1): 117–128. doi:10.1016/0022-2836(85)90262-1. PMID   3908689.
  8. Sinha, S.; Tompa, M. (2000). "A statistical method for finding transcription factor binding sites". Proc Int Conf Intell Syst Mol Biol. 8: 344–354. PMID   10977095.
  9. Staden, R. (October 1989). "Methods for discovering novel motifs in nucleic acid sequences". Comput. Appl. Biosci. 5 (4): 293–8. doi:10.1093/bioinformatics/5.4.293. PMID   2684350.
  10. Tompa, M. (1999). "An exact method for finding short motifs in sequences, with application to the ribosome binding site problem". Proc Int Conf Intell Syst Mol Biol: 262–271. PMID   10786309.
  11. van Helden, J.; André, B.; Collado-Vides, J. (September 1998). "Extracting regulatory sites from the upstream region of yeast genes by computational analysis of oligonucleotide frequencies". J. Mol. Biol. 281 (5): 827–842. CiteSeerX   10.1.1.18.6830 . doi:10.1006/jmbi.1998.1947. PMID   9719638.
  12. 1 2 3 4 5 Rajasekaran, S.; Balla, S.; Huang, C. H. (October 2005). "Exact algorithms for planted motif problems". J. Comput. Biol. 12 (8): 1117–1128. CiteSeerX   10.1.1.549.5547 . doi:10.1089/cmb.2005.12.1117. PMID   16241901.
  13. Davila, J.; Rajasekaran, S. (2006). "Extending Pattern Branching to Handle Challenging Instances". Sixth IEEE Symposium on BioInformatics and BioEngineering (BIBE'06). pp. 65–69. doi:10.1109/BIBE.2006.253317. ISBN   978-0-7695-2727-7. S2CID   17562470.{{cite book}}: |journal= ignored (help)
  14. Davila, J.; Balla, S.; Rajasekaran, S (2006). "Space and time efficient algorithms for planted motif search". Proc. 6th International Conference on Computational Science (ICCS 2006)/ 2nd International Workshop on Bioinformatics Research and Applications (IWBRA 2006) LNCS 3992: 822–829. CiteSeerX   10.1.1.94.4572 .
  15. 1 2 3 Chin, F. Y. L.; Leung, H. C. M. (2005). "Voting Algorithms for Discovering Long Motifs". Proceedings of the 3rd Asia-Pacific Bioinformatics Conference. pp. 261–271. CiteSeerX   10.1.1.123.2457 . doi:10.1142/9781860947322_0026. ISBN   978-1-86094-477-2.{{cite book}}: |journal= ignored (help)
  16. 1 2 3 Pisanti, N.; Carvalho, A.; Marsan, L.; Sagot, M. F. (2006). "Risotto: Fast extraction of motifs with mismatches". Proceedings of the 7th Latin American Theoretical Informatics Symposium: 757–768. CiteSeerX   10.1.1.60.1028 .
  17. 1 2 Pevzner, P. A.; Sze, S. H. (2000). "Combinatorial approaches to finding subtle signals in DNA sequences". Proc Int Conf Intell Syst Mol Biol. 8: 269–278. PMID   10977088.
  18. Bailey, T. L.; Elkan, C. (1994). "Fitting a mixture model by expectation maximization to discover motifs in biopolymers". Proc Int Conf Intell Syst Mol Biol. 2: 28–36. PMID   7584402.
  19. Lawrence, C. E.; Altschul, S. F.; Boguski, M. S.; Liu, J. S.; Neuwald, A. F.; Wootton, J. C. (October 1993). "Detecting subtle sequence signals: a Gibbs sampling strategy for multiple alignment". Science. 262 (5131): 208–214. Bibcode:1993Sci...262..208L. doi:10.1126/science.8211139. PMID   8211139.
  20. Bailey, T. L.; Elkan, Charles (January 1995). "Unsupervised learning of multiple motifs in biopolymers using expectation maximization". Machine Learning. 21 (1–2): 51–80. doi: 10.1007/BF00993379 .
  21. 1 2 3 Davila, J.; Balla, S.; Rajasekaran, S. (2007). "Fast and practical algorithms for planted (l, d) motif search". IEEE/ACM Trans Comput Biol Bioinform. 4 (4): 544–552. doi:10.1109/TCBB.2007.70241. PMID   17975266. S2CID   15212174.
  22. Rajasekaran, S.; Dinh, H. (2011). "A speedup technique for (l, d)-motif finding algorithms". BMC Res Notes. 4: 54. doi: 10.1186/1756-0500-4-54 . PMC   3063805 . PMID   21385438.
  23. 1 2 Dinh, H.; Rajasekaran, S.; Kundeti, V. K. (2011). "PMS5: an efficient exact algorithm for the (ℓ, d)-motif finding problem". BMC Bioinformatics. 12: 410. doi: 10.1186/1471-2105-12-410 . PMC   3269969 . PMID   22024209.
  24. 1 2 Bandyopadhyay, S.; Sahni, S.; Rajasekaran, S. (2012). "PMS6: A fast algorithm for motif discovery". 2012 IEEE 2nd International Conference on Computational Advances in Bio and medical Sciences (ICCABS). pp. 1–6. doi:10.1109/ICCABS.2012.6182627. ISBN   978-1-4673-1321-6. PMC   3744182 . PMID   23959399.
  25. 1 2 3 4 Dinh, H.; Rajasekaran, S.; Davila, J. (2012). Brusic, Vladimir (ed.). "qPMS7: a fast algorithm for finding (ℓ, d)-motifs in DNA and protein sequences". PLOS ONE. 7 (7): e41425. Bibcode:2012PLoSO...741425D. doi: 10.1371/journal.pone.0041425 . PMC   3404135 . PMID   22848493.
  26. Davila, J.; Balla, S.; Rajasekaran, S. (2007). "Pampa: An improved branch and bound algorithm for planted (l, d) motif search". Technical Report. CiteSeerX   10.1.1.93.6500 .