Skip to main content
  • Methodology article
  • Open access
  • Published:

A parallel and incremental algorithm for efficient unique signature discovery on DNA databases

Abstract

Background

DNA signatures are distinct short nucleotide sequences that provide valuable information that is used for various purposes, such as the design of Polymerase Chain Reaction primers and microarray experiments. Biologists usually use a discovery algorithm to find unique signatures from DNA databases, and then apply the signatures to microarray experiments. Such discovery algorithms require to set some input factors, such as signature length l and mismatch tolerance d, which affect the discovery results. However, suggestions about how to select proper factor values are rare, especially when an unfamiliar DNA database is used. In most cases, biologists typically select factor values based on experience, or even by guessing. If the discovered result is unsatisfactory, biologists change the input factors of the algorithm to obtain a new result. This process is repeated until a proper result is obtained. Implicit signatures under the discovery condition (l, d) are defined as the signatures of length ≤ l with mismatch tolerance ≥ d. A discovery algorithm that could discover all implicit signatures, such that those that meet the requirements concerning the results, would be more helpful than one that depends on trial and error. However, existing discovery algorithms do not address the need to discover all implicit signatures.

Results

This work proposes two discovery algorithms - the consecutive multiple discovery (CMD) algorithm and the parallel and incremental signature discovery (PISD) algorithm. The PISD algorithm is designed for efficiently discovering signatures under a certain discovery condition. The algorithm finds new results by using previously discovered results as candidates, rather than by using the whole database. The PISD algorithm further increases discovery efficiency by applying parallel computing. The CMD algorithm is designed to discover implicit signatures efficiently. It uses the PISD algorithm as a kernel routine to discover implicit signatures efficiently under every feasible discovery condition.

Conclusions

The proposed algorithms discover implicit signatures efficiently. The presented CMD algorithm has up to 97% less execution time than typical sequential discovery algorithms in the discovery of implicit signatures in experiments, when eight processing cores are used.

Background

Mutations introduce variations and divergence into DNA sequences within and among species. Differences among DNA sequences are extensively used to identify species [14]. For example, specific oligonucleotides have already been used in the Polymerase Chain Reaction (PCR) method to identify 14 human pathogenic yeast species [5]. A unique DNA signature is a sequence that occurs in a DNA database only once, and has some minimum mutation distance from all other sequences in the database. Unique signature discovery [6] is the finding of unique signatures in a set of DNA sequences. They are accelerating various areas of research, including the map-based cloning of genes that control traits, comparative genome analysis, protein identification, and the development of various methods that depend on gene-specific oligonucleotides, such as the DNA microarray technology.

The methods of signature discovery have been widely studied, and many related tools and applications have been developed [1, 616]. For example, [14] integrates multiple bioinformatics algorithms to determine horizontally transferred, pathotype-specific signature genes as targets for specific, high-throughput molecular diagnostic applications and reverse vaccinology screens; insignia [15] is a web application for rapidly identifying unique DNA signatures, and hybseek [16] is a web service for efficiently designing both pathogen-specific and compatible primer pairs for DNA-based diagnostic multi-analyte assays.

The algorithm of Zheng et al. [17] and IMUS [18] are two hamming-distance-based unique signature discovery algorithms. These two algorithms deal with DNA databases. Let l and d be two positive integers, where dl. An l-pattern is a string of l characters in the alphabet set {A, C, G, T}. A pattern P is (l, d)-mismatched to a pattern Q if the length of P and Q is l and the hamming distance, which is the number of mismatches, between P and Q does not exceed d. An l-pattern P is referred to as a unique signature with mismatch tolerance d if and only if no other pattern Q exists in the given DNA database such that P and Q are (l, d)-mismatched. Zheng's algorithm and the IMUS algorithm are designed for efficiently discovering the unique signatures under the discovery conditions of signature length l and mismatch tolerance d.

Zheng's algorithm, called the UO algorithm hereafter, is based on the observation that if two patterns, P and Q, are (l, d)-mismatched, then at least one of the partitions of λ P is (l/λ, 1)-mismatched to the corresponding part in Q, where λ = d/2 + 1 and all partitions have equal length. The UO algorithm is a two-phase algorithm. In the first phase, the algorithm divides DNA sequences into patterns of length l/λ. An index system is built based on the l/λ-patterns as index keys, in which l-patterns that contain the same index key are gathered in a single index entry. Assume that K P is an index key, and K Q is one of the keys that are (l/λ, 1)-mismatched to K P . In the second phase, the UO algorithm performs complete string comparisons on the l-patterns in the entries K Q and K P to check whether they are (l, d)-mismatched. The unique signatures emerge after all of the duplicated patterns have been pruned.

The IMUS algorithm improves upon the UO algorithm. The IMUS algorithm is based on the observation that if two patterns P and Q are (l, d)-mismatched, then at least one of the two halves of P is (l/2, d/2)-mismatched to the corresponding part of Q. In the processing-kernel level, the UO and IMUS algorithms are similar. The main difference between them is the number of partitions in an l-pattern. The IMUS algorithm divides an l-pattern into two partitions, whereas the UO algorithm divides a pattern into d/2 + 1 partitions. Since the mismatch tolerance d is small (usually d < 6) in most discoveries of short signatures (of length l ≤ 40), the IMUS algorithm reduces the number of partitions in an l-pattern to decrease the number of required string comparisons, and thus increases the discovery efficiency. A consequence is that more memory is required to store the index that is used in the IMUS algorithm. An additional frequency filter, which represents an enhanced usage of the frequency distance, defined in [19], is used in the IMUS algorithm as a pre-filter to prevent unnecessary comparisons between dissimilar patterns. However, most signature discovery algorithms have the problem that we do not know how to select proper factor values, such as the proper (l, d) values in the UO or IMUS algorithm, because the proper discovery result is defined on a case-by-case basis. In most cases, factor values are selected based on domain knowledge or experience or even by guessing. The factor settings are then used in the discovery algorithm to discover signatures. If the result is unacceptable, then the factor values are changed to get other results. The process is repeated until satisfactory results are found. This situation often arises when an unfamiliar DNA database is being used. A method that can efficiently find all of the signatures that satisfy feasible discovery conditions, instead of repeated trial and error, enabling users to select the proper signatures, is needed. In other words, when the discovery condition is given in terms of signature length l and mismatch tolerance d, a discovery algorithm can be use to discover not only the signatures with exact (l, d) but also all signatures that meet stricter discovery conditions - with a length smaller than l or a mismatch tolerance larger than d. Then, the signatures that meet our requirements can be selected directly from the results. The signatures of length ≤ l and mismatch tolerance ≥ d are called the implicit signatures under the discovery condition (l, d). Providing researchers with all implicit signatures without manually changing the factor values would be helpful. One challenge is how to discover efficiently all implicit signatures from DNA databases under a certain discovery condition. An intuitive solution is to use the UO or IMUS algorithm iteratively to perform a complete discovery under all feasible discovery conditions. However, this solution is not sufficiently efficient. The UO and IMUS algorithms are specifically designed for discovering signatures that meet a certain discovery condition, but they cannot discover all of the implicit signatures. Accordingly, an efficient algorithm for discovering all implicit signatures under a certain discovery condition is needed.

The idea of the 'incremental' has been used in many research areas, such as data mining and knowledge discovery [20, 21], communications [2225] and computer graphics and visualization [26, 27]. The definitions of the term 'incremental' vary slightly among fields. Here, 'incremental' is used to refer to the fact that a new result is obtained by processing the previously discovered signatures, rather than by performing a complete discovery on the whole database. Additionally, since an increasing number of computers have multi-core processors, parallel computing is applied to accelerate the signature discovery processes. This work proposes an algorithm that is called the Consecutive Multiple Discovery (CMD) algorithm, which is designed specifically for discovering all implicit signatures under a certain discovery condition from DNA databases. The CMD algorithm is an iterative algorithm. It includes an algorithm called Parallel and Incremental Signature Discovery (PISD) algorithm as a kernel routine. The PISD algorithm enhances the hamming-distance-based unique signature discovery algorithms, the UO and IMUS algorithms, by using the incremental and parallel computing techniques. The PISD algorithm is based on observations of hamming-distance-based signatures, and discovers new results by reusing previously discovered signatures but with looser discovery conditions. For example, the algorithm can find signatures of length l = 28 and mismatch tolerance d = 4 by processing the signatures of l = 30 and d = 2. The scope of the search is far smaller than the size of the input database. The PISD algorithm runs faster than the typical UO and IMUS algorithms because it reuses the discovered signatures as candidates, rather than all of the patterns in the database. Based on the results from the experiments on human chromosome 13 EST databases, the proposed CMD algorithm discovers all implicit signatures and performs 33.74 times faster than the typical algorithm when eight processing cores are used.

Results and Discussion

Algorithm

The proposed Consecutive Multiple Discovery (CMD) algorithm efficiently discovers all of the implicit signatures of length ≤ l and mismatch tolerance ≥ d under the discovery condition (l, d). The CMD algorithm uses the parallel and incremental signature discovery (PISD) algorithm as a kernel routine. Given a discovery condition (l, d), the PISD algorithm is designed for efficiently discovering signatures of length l' and tolerance d', and then the CMD algorithm uses the PISD to find all of the implicit signatures of length l'l and mismatch tolerance d'd. The PISD algorithm is based on observations of the hamming-distance-based signatures, and uses parallel computing to increase discovery efficiency. The PISD algorithm applies a scheduling heuristic, which is called the parallel entry list (PEL) heuristic, to generate a reordered entry list when parallel computing is used. This entry list improves the performance of the proposed PISD algorithm.

The parallel and incremental signature discovery (PISD) algorithm

Let Ωl, ddenote the set of the unique signatures discovered by the UO or IMUS algorithm under the discovery condition (l, d). We have the observations as follows:

Observation 1. P Ωl-1, d, P must be a substring of a pattern Q in Ωl, d.

Proof.

Assume P Ωl-1, dand P' is a pattern of length l - 1. Since P is a signature of condition (l - 1, d), HD(P, P') > d, where HD(P, P') is the hamming distance between P and P'.

Let x be a character in {A, C, G, T}. Assume Q = x + P and Q' is a pattern of length l, where + means string concatenation. HD(Q, Q') = HD(x + P, + ) ≥ HD(P, ) > d, where is the i-th character of Q' and denotes the substring starting from the i-th to the j-th characters in Q'. Hence, P is a substring of Q and Q Ωl, din this case.

The proof of the case with Q = P + x can be done in the same way, yielding the result that P is a substring of Q and Q Ωl, d.

Therefore, the observation holds.

Observation 2. P Ωl, d+1, P must be in Ωl, d.

Proof.

Assume P Ωl, d+1and P' is a pattern of length l. Since P Ωl, d+1, HD(P, P') > d + 1 > d, where HD(P, P') is the hamming distance between P and P'. Thus, P Ωl, d. The observation holds.

Observation 3. P Ωl-a, d+b, P must be a substring of a pattern Q in Ωl,d, where a and b are positive integers, and a < l.

The observations can be used to improve the hamming-distance-based signature discovery algorithms, including the UO and IMUS algorithms. Based on these observations, the unique signatures of factors (l', d') must be discoverable from the unique signatures that satisfy the discovery condition (l, d), where l'l and d'd. Accordingly, the discovery is incremental, reducing the scope of the search in the discovery process. Hereafter, this heuristic is called 'incremental discovery'.

For example, Table 1(A) presents a DNA database of three sequences. Table 1(B) lists the five patterns in the database. Table 1(C) presents Ω5,1, Ω5,2, Ω4,1 and Ω4,2. Each pattern in Ω5,2 is in Ω5,1, and all of the patterns in Ω4,1 and Ω4,2 are implicit in Ω5,1. Restated, to discover Ω5,2, Ω4,1 or Ω4,2, the patterns in Ω5,1 can be used as candidates, instead of all of the patterns in the database. Since the number of patterns in Ω5,1, 5, is less than the number of patterns in the database, 12, the discovery process is accelerated.

Table 1 An example of implicit signatures.

Additional file 1 presents the PISD algorithm. Let l' be the desired signature length and d' be the mismatch tolerance. Divide all of the DNA sequences in the input database into α-patterns, where the value of α is related to the selected hamming-distance-based signature discovery algorithm. For example, α = l'/2 for the IMUS algorithm, and α = l'/(d'/2 + 1) for the UO algorithm. A l'-pattern comprises l'/α consecutive α-patterns. An index of 4αentries is built with the α-patterns as index keys. A multi-level index can be adopted if the index is too large to be fit in the main memory. The l'-patterns that contain a certain α-pattern are collected in an entry. Each entry maintains a list of the locations of the pattern in the database, which is called a pattern list. The patterns in the input database are called data patterns, and the patterns that are discovered by a hamming-distance-based signature discovery algorithm are referred to as candidate patterns. Based on the observations of hamming-distance-based discovery and incremental discovery, the new result obtained under stricter discovery conditions can be discovered from the candidate patterns obtained under looser conditions. To accelerate access, the candidate patterns are arranged in the pattern list in an entry prior to the non-candidate patterns. A pointer indicates the end of the candidate patterns in the pattern list. A processing order list of all of the entries in the index is constructed. If a multiple-processor system is used, then the processing order list is generated by the PEL heuristic (described in the following section); otherwise, the order list includes the entries in an arbitrary order.

Observation 4. (UO observation) if two patterns, P and Q, are (l', d')-mismatched, then at least one of the (d'/2 + 1) partitions of P is (α, 1)-mismatched to the corresponding part in Q, where α = l'/(d'/2 + 1) and all partitions have equal length.

Observation 5. (IMUS observation) if two patterns P and Q are (l', d')-mismatched, then at least one of the two halves of P is (α, d'/2)-mismatched to the corresponding part of Q, where α = l'/2.

Two index entries are called similar entries if the number of mismatches between the keys of the entries is less than or equal to a certain value β. This value is also related to the employed discovery algorithm, for example, β is 1 in the UO algorithm, and β = d'/2 in the IMUS algorithm. Assume K P and K Q are index keys, and P and Q are the l'-patterns listed in the entries of keys K P and K Q , respectively. Based on Observations 4 and 5, if Q is (l', d')-mismatched to P, then K Q must be (α, β)-mismatched to K P , such that the entries of keys K P and K Q are similar. Since all the patterns that are (l', d')-mismatched to a pattern P must be in the entries that are similar to the entry whose key is K P , P is compared to all of the patterns in the similar entries, to determine whether P is unique. The pattern P is a unique signature if no pattern is (l', d')-mismatched to it. Since the new result can be discovered from the candidate patterns, the PISD processes only the candidate patterns. An available processor is assigned to handle the next untreated entry (based on the assumption that the key of the entry is K P ) in the processing order list. Assume that P is one of the candidate patterns in the entry. P is compared to all of the patterns in the similar entries, which are those whose keys are (α, β)-mismatched to K P . Each of the comparisons is a complete string comparison of l' characters. The candidate l'-patterns that are (l', d')-mismatched to any of the l'-patterns in the similar entries are discarded, and the remaining candidate patterns are new unique signatures.

The scheduling heuristic for parallelism

One of the ways to accelerate signature discovery is to apply parallel computing. Assume that a computer of n processors is employed in signature discovery, and that processor i takes t i time units to complete its tasks. The overall processing time T n required by the computer to complete the discovery is , which means that the processor that takes longest dominates the overall processing time.

The optimal processing time when n processors are used is T n = T1/n, which equals 1/n of the processing time of a single-processor computer.

The simplest way to apply parallel computing to the proposed PISD algorithm is to assign randomly an available processor to process the patterns in the index in an arbitrary order. The treatment of an entry is referred to as a task. For example, a computer with four processors is used to handle N tasks. Processor 1 can be assigned to task 1, ..., and processor 4 can be assigned to task 4. Assume that processor 3 is the first to complete its task; the processor is immediately assigned to the next task, task 5. The next available processor is similarly assigned to the next task until all of the N tasks are completed. If four tasks are processed simultaneously, then ideally, the overall processing time is reduced to one quarter of that which would be required using a single-processor computer.

However, two potential problems must be considered when parallel computing is applied to the proposed PISD algorithm. First, if one of the last few tasks requires much processing time, then the overall processing time may be longer than the optimal processing time. For example, Figure 1 shows a list of six tasks. All of the tasks can be completed in 22 time units by a single-processor computer. The optimal processing time is therefore 22/2 = 11 units for a two-processor computer. However, in this case, processor 1 is assigned to {A, D, F}, and processor 2 is assigned to {B, C, E}. The processing times are 15 and 7 units respectively, and the overall processing time is 15 units, which exceeds the optimal processing time. This situation can be avoided by arranging long tasks before the others in the processing order list. Here, the long tasks are moved forward in the processing order list, yielding the result in Figure 2. In the new list, processor 1 performs tasks {F, D} and processor 2 performs tasks {A, C, E, B}. The overall processing time is 11 units, which equals the optimal processing time.

Figure 1
figure 1

An example of the first potential problem of parallel signature discovery. The tasks can be completed in 22 time units by a single-processor computer. The overall processing time is 15 units for a two-processor computer, which exceeds the optimal processing time, 11 units.

Figure 2
figure 2

The result of moving long tasks forward in the processing order list. The long tasks are moved forward in the processing order list in Figure 2, yielding the new processing order list. The overall processing time for a two-processor computer is 11 units, which equals the optimal processing time.

The second potential problem is that the time required to process a task may exceed the optimal processing time, T1/n. For example, Figure 3 shows a list of six tasks. All of the tasks can be completed in 24 units by a single-processor computer. When a two-processor computer is used to handle the tasks, processors 1 and 2 are assigned to tasks {A, C, E} and {B, D, F}, and taking 5 and 19 units, respectively. The overall processing time is 19 units. Long tasks are moved forward, yielding the new processing order list that is shown in Figure 4. In this situation, processor 1 is assigned to task F only, and processor 2 is assigned to the other tasks. The overall processing time is then 16 units, which still exceeds the optimal processing time, because task F takes 16 units, which exceeds the sum of the times required to complete all of the other tasks. Hence if less time were to be spent on task F, then the overall processing time would be reduced. Generally, when an entry has more patterns than the other entries, a task that handles this entry takes more time to complete. Therefore, some of the longest entries are divided into n equal partitions, which are then treated as typical entries, where n is the number of available processors. For example, task F in Figure 4 can be divided into two tasks with identical processing times, yielding the new task list in Figure 5. After the division, processor 1 is assigned to tasks {F1, B, D, A}, and processor 2 is assigned to tasks {F2, C, E}. The overall processing time is 12 units, which equals the optimal processing time.

Figure 3
figure 3

An example of the second potential problem of parallel signature discovery. The tasks can be completed in 24 units by a single-processor computer. The overall processing time is 19 units for a two-processor computer, which exceeds the optimal processing time, 12 units.

Figure 4
figure 4

The result of moving long tasks forward in the processing order list. The long tasks are moved forward in the processing order list in Figure 4, yielding the new processing order list. The overall processing time for a two-processor computer is 16 units, which still exceeds the optimal processing time.

Figure 5
figure 5

The result of dividing long tasks into short tasks in the processing order list. Task F in Figure 5 is divided into two tasks with identical processing times, yielding the new task list. The overall processing time for a two-processor computer is 12 units, which equals the optimal processing time.

Based on the above discussion, the order of tasks in the processing order list influences the overall processing time for parallel discovery. Since the proposed discovery algorithm PISD focuses on processing candidate patterns, the processing time of a task is proportional to the number of candidate patterns in the entry. The index entries can be sorted in descending order of the number of candidate patterns therein, and the sorted list can be used as the processing order list. Entries that contain more candidate patterns are expected to be at the top of the list. However, the sorting process takes O(N log N) time for N entries, which is significant.

A simple and efficient scheduling heuristic, called the parallel entry list (PEL), is provided. It yields a processing order list for tasks in which the tasks that involve more candidate patterns are before those that involve fewer. Additional file 2 displays the PEL heuristic. The PEL heuristic is similar to a partial quicksort. Unlike quicksort, the PEL heuristic is iterative, and only operates on the left part of a list in each iteration. Firstly, the PEL heuristic generates a processing order list L that consists of all of the index entries in arbitrary order, and w is defined as the number of index entries in L. The average number of candidate patterns (g) in each entry is computed, where g equals (total number of candidate patterns)/w. Let L i represent the i-th entry in L, and || be the number of candidate patterns in Li. Then, the PEL heuristic searches for the maximal value r such that || > g and the minimal value k such that || ≤ g, and then exchanges L k and L r . The searches and exchanges continue until r < k. The process scans the entries from L1 to L w in L and w is updated to the current value of r. Then, the entries in L are divided into two parts: if iw, then || > g; otherwise, || ≤ g. Assume w' is the most recent value of the variable w. Since || > g, iw, w < w'/2. Then, the PEL heuristic focuses on the first part of L, and moves the long entries forward until , where n is the number of available processors and N is the number of index entries in L. Now, the first w entries in L are the top w entries, which contain the most candidate patterns. The first w entries are removed from L, and the candidate patterns in each entry are divided into n partitions of equal number of patterns. The nw partitions are then put into L, and treated as typical entries in successive processes. The total number of scans performed on is , where m is the number of iterations of the main outer loop (line 10 to 27 of the PEL heuristic in Additional file 2), which moves the long entries forward. The time complexity of the PEL heuristic is O(3N) = O(N).

As an example of the above, consider an entry list L, shown in Table 2(A). The average number of candidate patterns in each entry (g) is 41. The leftmost entry in L that contains fewer than g candidate patterns, and the rightmost entry that contains more than g candidate patterns are sought. The respective results are entries A and J. These two entries are exchanged in L. Entries B and G as well as D and E are similarly exchanged. Table 2(B) shows the new processing order list. Now, w is four, and the number of candidate patterns in each of the first w = 4 entries exceeds g = 41, while that in the other entries is less than 41. Then, only the region of the first four entries is considered in the next step. The average number of the candidate patterns in each entry within this region is computed, yielding g = 79. In this region, the leftmost and rightmost entries that contain fewer than and more than 79 candidate patterns are J and E, respectively. J and E are exchanged in the list, yielding Table 2(C). Assume a two-processor computer is used. Entry E is divided into two partitions E1 and E2, and E1 and E2 are added to the list. The new list is as shown in Table 2(D). Processor 1 will handle entries E1, G, D, F, B, I and A, and processor 2 will handle entries E2, C, J, H and K. The total number of candidate patterns to be treated by each processor is 227.

Table 2 An example of using the PEL heuristic to build an entry list.

The consecutive multiple discovery (CMD) algorithm

Additional file 3 displays the consecutive multiple discovery (CMD) algorithm. Let l and d be two integers. The CMD algorithm is an iterative algorithm, which uses the PISD algorithm as a kernel routine, to discover all implicit signatures under the discovery condition of length l and mismatch tolerance d. Firstly, the UO or IMUS algorithm is used to discover the unique signatures that satisfy the discovery condition (l, d). The signatures discovered by UO or IMUS are applied as candidates in successive discoveries. The feasible discovery conditions are all combinations of the possible l' and d', which means {(l'l, d'd)}. In each discovery, the PISD algorithm is used to discover new signatures from the candidates under a feasible discovery condition. The discovery process continues until all of the implicit signatures are discovered.

Testing

This section evaluates the performance of the proposed algorithms. Since the incremental discovery and parallel computing mentioned in the previous sections can be applied to the UO and IMUS algorithms, briefly, the CMD (or PISD) with the UO and IMUS kernels are denoted as CMDUO and CMDIMUS (or PISDUO and PISDIMUS), respectively. The algorithms are analyzed based on a uniformly distributed database. The first part of this section presents these analyses. To evaluate the performance of the UO, IMUS, CMDUO and CMDIMUS algorithms, they are applied to human chromosome 13 and 21 EST databases for signature discovery. The second part of this section presents the experimental results.

Mathematical analyses

The CMD algorithm is an iterative algorithm. It includes the PISD algorithm as a kernel routine. Accordingly, the time complexity of the PISD algorithm dominates that of the CMD algorithm. First, the time complexity of the PISDUO algorithm is analyzed under a certain discovery condition, and then, the results are integrated, yielding the time complexity of the CMDUO algorithm. The analyses of the PISDIMUS and CMDIMUS algorithms can be done in a similar way.

Let l' be the signature length and d' be the mismatch tolerance. σ l' denotes the index system built under the condition of signature length l' in the PISDUO algorithm. σ l' consists of 4αpattern entries, where α = l'/(d'/2 + 1) is the length of the entry keys. Let σl', ibe the i-th entry in σ l' ·|σl', i| denotes the number of all patterns in σl', iand denotes the number of candidate patterns in σl', i. HD(σl', i, σl', j) denotes the hamming distance between σl', iand σl', j, which is defined as the hamming distance between the entry keys of σl', iand σl', j. Because only the candidate patterns have to be considered, |σl', i| string comparisons are performed on the patterns in σl', i. Additionally, ∑ j |σl', j| string comparisons are required to check possible mutants, where σl', j σ l' such that HD(σl', i, σl', j) = 1. All characters in an l'-pattern excluding the entry key region are compared in each of the string comparisons, yielding l' - α character comparisons.

The total amount of character comparisons used in the PISDUO algorithm, denoted as , is:

where σl', j σ l' such that HD(σl', i, σl', j) = 1.

Let l be the desired signature length and d be the mismatch tolerance of pattern uniqueness. the CMDUO algorithm uses the PISDUO algorithm to find all of the implicit signatures of length l'l and mismatch tolerance d'd. The time complexity of the CMDUO algorithm, denoted as , is:

where σl', j σ l' such that HD(σl', i, σl', j) = 1.

Assume the input DNA database D and the set of the discovered signatures Ωl'l, d'dare uniformly distributed. Let x, y}l'xl and dyd'}, where (x, y) ≠ (l', d'), be the set of signatures discovered in the strictest iteration prior to the iteration of (l', d'). Assume the sizes of D and are denoted as |D| and ||. The index system built in this uniformly distributed case is denoted as . Each entry in should contain || ≈ |D|/4αpatterns, and of them are candidate patterns. In this case, the amount of character comparisons used in the PISDUO algorithm, denoted as , is:

where σl', j σ l' such that HD(σl', i, σl', j) = 1, and κ = 3α is the number of all possible 1 base permutations of a string of length α. Note that because of the uniform assumption.

In the uniformly distributed case, the number of character comparisons used in the CMDUO algorithm, denoted as , is:

where κ = 3α.

The main difference between the PISDUO and the typical UO algorithms is that the two algorithms use different candidate sets. The PISDUO algorithm uses the previously discovered signatures as candidates, but the UO algorithm uses all of the patterns in the database as candidates. The amount of character comparisons used in the UO algorithm for discovering signatures from the uniformly distributed database D can be obtained by replacing with D. The formula is:

where κ = 3α.

The UO algorithm is executed repeatedly to discover all implicit signatures. The time complexity of using the UO algorithm, denoted as , is:

where κ = 3α.

The gain delivered by the CMDUO algorithm is:

where κ = 3α.

It means that the CMDUO algorithm performs G ≥ |D|/|Ωl, d| times faster than the typical UO algorithm, when discovering implicit signatures from a uniformly distributed database.

Performance evaluation

The platform that was adopted in this experiment was a Dell PowerEdge R900 server with two Intel Xeon E7430 2.13 GHz quad-core CPUs, 12 GB RAM and 900 GB disk space. The operating system was Red Hat Enterprise Linux 5. The algorithms were implemented in JAVA language, and the programs were compiled by JDK 1.6. The DNA data that were used in the experiments were from the human chromosome 13 and 21 EST databases. Before the experiments, the remarks in the databases were removed; all of the universal characters, such as 'don't care', were replaced with 'A', and DNA sequences that were shorter than 36 bases were discarded. The experimental data are denoted as D13 (human chromosome 13 EST database) and D21 (human chromosome 21 EST database), and their corresponding sizes were approximately 36.44 M and 22.21 M bases.

The pooled oligo probes, that are used to screen an EST library, such as the BAC library, generally have lengths from 24 to 40 bases [28]. Our experimental results on unique signature discoveries, with the criteria of exact matches, also shows that most of the human EST sequences can be distinctly labeled by signatures of length greater than 18 bases. Accordingly, the experiments in this section focused on discovering signatures of length between 24 and 30 with mismatch tolerances of two and four.

For reasons of performance and memory consumption, a two-level index was used in the implementation of the IMUS and CMDIMUS algorithms. The first level of the index comprised 410 direct-accessible entries, and a binary search was used to locate a specified entry in the second level. The index systems that were used in the implementation of the UO and CMDUO algorithms were one-level, and all of the entries in their index systems were directly accessible. Since the purpose of our experiments was to evaluate the improvements provided by incremental discovery and parallel computing, additional filters, such as the frequency filter that was used in the IMUS algorithm, was excluded from the kernels of the algorithms.

Since d/2 + 1 = 2 when d = 2, the kernels of the UO and IMUS algorithms are very similar under this condition. Only the performance of the IMUS and CMDIMUS algorithms was examined when mismatch tolerance was two. Table 3 presents the discovery conditions that were used in our experiments. In the experiments on the UO and IMUS algorithms, the UO and IMUS algorithms were executed repeatedly to discover all of the signatures under all feasible discovery conditions. The experiments were performed on a one-processor computer. Before the performance of the CMDUO and CMDIMUS algorithms was evaluated, the IMUS algorithm was used to discover signatures under the discovery condition of length l = 30 and mismatch tolerance d = 2. The discovery on D13 took approximately 19.6 minutes and 20.88% of the patterns from D13 were discovered as signatures. The discovery on D21 took about 5.3 minutes and 22.07% of the patterns from D21 were discovered as signatures. In each successive experiment, the CMDUO and CMDIMUS algorithms used the discovered signatures of l = 30 and d = 2 as candidates to produce new results.

Table 3 The discovery conditions used in our experiments.

The percentage time saved is used to evaluate the improvements in the processing time of an algorithm. The time saving is defined as (1-(processing time of the CMDUO (or CMDIMUS) algorithm)/(processing time of the UO (or IMUS) algorithm))*100%. A larger 'saving' means a greater improvement by the CMDUO or CMDIMUS algorithm. The term 'overall' refers to the total processing time required for the UO, IMUS, CMDUO or CMDIMUS algorithm to discover all of the signatures that satisfy the discovery conditions.

First, improvements in the time of discovery associated with incremental discovery are examined. For a single processing core, the performance of the CMDUO and CMDIMUS algorithms was evaluated by using the algorithms to discover signatures from D13 and D21. Tables 4 and 5 present the processing time that for the UO and IMUS algorithms, and the time savings delivered by the CMDUO and CMDIMUS algorithms. The tables also present the processing time required to discover signatures under every discovery condition. In the experiments, the proposed CMDUO algorithm took 76.2% less processing time than the UO algorithm to discover all of the implicit signatures from D13, and about 74% less processing time to discover those from D21. With respect to the performance of the CMDIMUS algorithm, it took about 67% and 52% less processing time than the IMUS algorithm to discover all of the signatures from D13 and D21. Greater overheads in accessing indices caused the percentage processing time saved by the CMDIMUS algorithm to be less than that saved by the CMDUO algorithm.

Table 4 The performance of the CMDUO algorithm when using a single processing core.
Table 5 The performance of the CMDIMUS algorithm when using a single processing core.

To elucidate the benefits of parallel computing for signature discovery, various number of processing cores were used and the PISDUO and PISDIMUS algorithms were used to discover the signatures of (l' = 24, d' = 4) from D13. Table 6 shows the experimental results: the acceleration is the processing time normalized to the processing time when one processor is used. When the PISDUO algorithm is used, the acceleration of the discovery processes is almost proportional to the number of processing cores used. The acceleration values of the PISDIMUS algorithm increase with the number of processing cores such that the discovery process using eight processing cores is approximately 4.6 times faster than that using a single core.

Table 6 The benefits of parallel computing for signature discovery.

Finally, the improvements in the discovery performance delivered by a combination of incremental discovery and parallel computing are examined. In this case, the CMDUO and CMDIMUS algorithms discovered signatures from the databases using eight processing cores. Tables 7 and 8 present the time savings made by the CMDUO and CMDIMUS algorithms. Tables 9 and 10 show the number of discovered signatures under each discovery condition. In the experiments, the proposed CMDUO algorithm took 97% less processing time than the UO algorithm to discover all of the implicit signatures from D13, and about 96.7% less processing time to complete discovery on D21. The CMDIMUS algorithm took about 92.6% and 88.8% less processing time than the IMUS algorithm, to discover all of the signatures from the experimental data D13 and D21, respectively.

Table 7 The performance of the CMDUO algorithm when using eight processing cores.
Table 8 The performance of the CMDIMUS algorithm when using eight processing cores.
Table 9 The number of signatures discovered by the CMDUO algorithm when using eight processing cores.
Table 10 The number of signatures discovered by the CMDIMUS algorithm when using eight processing cores.

The experimental results reveal that the CMDUO and CMDIMUS algorithms with one processing core require up to 76% and 67% less processing time to find all implicit signatures than the typical UO and IMUS algorithms, respectively. Moreover, up to 97% and 93% of the processing time is saved when the CMDUO and CMDIMUS algorithms are executed using eight processing cores. Restated, the proposed CMDUO and CMDIMUS algorithms perform 4.2 and 3.03 times faster than the typical UO and IMUS algorithms when one processing core is used, and 33.74 and 13.48 times faster when eight processing cores are used.

Conclusions

This work proposes two unique signature discovery algorithms - the consecutive multiple discovery (CMD) algorithm and the parallel and incremental signature discovery (PISD) algorithm. The CMD algorithm is designed to discover all implicit signatures from DNA databases, providing all implicit signatures to users, especially when they are using an unfamiliar DNA database. The PISD algorithm is a parallel and incremental enhancement of existing signature discovery algorithms. It is based on incremental discovery, and efficiently discovers signatures under a certain discovery condition. This incremental strategy can be adapted to all hamming-distance-based unique signature discovery algorithms. The PISD algorithm has a significantly shorter processing time for signature discovery than typical discovery algorithms. The PISD algorithm is the kernel of the CMD algorithm. Consequently, the CMD algorithm provides an efficient means of implicit signature discovery.

References

  1. Kaderali L, Schliep A: Selecting signature oligonucleotides to identify organisms using DNA arrays. Bioinformatics 2002, 18(10):1340–1349. 10.1093/bioinformatics/18.10.1340

    Article  CAS  PubMed  Google Scholar 

  2. Francois P, Charbonnier Y, Jacquet J, Utinger D, Bento M, Lew D, Kresbach GM, Ehrat M, Schlegel W, Schrenzel J: Rapid bacterial identification using evanescent-waveguide oligonucleotide microarray classification. Journal of Microbiological Methods 2006, 65(3):390–403. 10.1016/j.mimet.2005.08.012

    Article  CAS  PubMed  Google Scholar 

  3. Mateo-Marti E, Briones C, Pradier CM, Martin-Gago JA: A DNA biosensor based on peptide nucleic acids on gold surfaces. Biosensors and Bioelectronics 2007, 22(9–10):1926–1932. 10.1016/j.bios.2006.08.012

    Article  CAS  PubMed  Google Scholar 

  4. Eom HS, Hwang BH, Kim DH, Lee IB, Kim YH, Cha HJ: Multiple detection of food-borne pathogenic bacteria using a novel 16S rDNA-based oligonucleotide signature chip. Biosensors and Bioelectronics 2007, 22(6):845–853. 10.1016/j.bios.2006.03.005

    Article  CAS  PubMed  Google Scholar 

  5. Kiryu BM, Kiryu CP: Rapid identification of Candida albicans and other human pathogenic yeasts by using oligonucleotides in a PCR. J Clin Microbiol 1998, 73: 1634–1641.

    Google Scholar 

  6. Li F, Stormo GD: Selection of optimal DNA oligos for gene expression arrays. Bioinformatics 2001, 17: 1067–1076. 10.1093/bioinformatics/17.11.1067

    Article  CAS  PubMed  Google Scholar 

  7. Rouillard JM, Herbert CJ, Zuker M: Oligoarray: Genome-scale oligonucleotide design for microarrays. Bioinformatics 2002, 18: 486–487. 10.1093/bioinformatics/18.3.486

    Article  CAS  PubMed  Google Scholar 

  8. Kim SS, Lee CH, Lee KM, Lee SD: A New Scheme for Nucleotide Sequence Signature Extraction. Proceedings of the 5th International Conference on Machine Learning and Applications 2006, 162–167.

    Google Scholar 

  9. Phillippy AM, Mason JA, Ayanbule K, Sommer DD, Taviani E, Huq A, Colwell RR, Knight IT, Salzberg SL: Comprehensive DNA Signature Discovery and Validation. PLoS Computational Biology 2007., 3(5): 10.1371/journal.pcbi.0030098

    Google Scholar 

  10. van Hijum SA, de Jong A, Buist G, Kok J, Kuipers OP: UniFrag and GenomePrimer: selection of primers for genome-wide production of unique amplicons. Bioinformatics 2003, 19: 1580–1582. 10.1093/bioinformatics/btg203

    Article  CAS  PubMed  Google Scholar 

  11. Chou HH, Hsia AP, Mooney DL, Schnable PS: PICKY: oligo microarray design for large genomes. Bioinformatics 2004, 20: 2893–2902. 10.1093/bioinformatics/bth347

    Article  CAS  PubMed  Google Scholar 

  12. Nordberg EK: YODA: selecting signature oligonucleotides. Bioinformatics 2005, 21: 1365–1370. 10.1093/bioinformatics/bti182

    Article  CAS  PubMed  Google Scholar 

  13. Rahmann S: Rapid large-scale oligonucleotide selection for microarrays. Proc of the First IEEE Computer Society Bioinformatics Conference (CSB'02) 2002, 54–63. full_text

    Chapter  Google Scholar 

  14. Amin HB, Hashem A-GM, Aziz RK: Bioinformatics determination of ETEC signature genes as potential targets for molecular diagnosis and reverse vaccinology. BMC Bioinformatics 2009., 10(7):

    Google Scholar 

  15. Phillippy AM, Ayanbule K, Edwards NJ, Salzberg SL: Insignia: a DNA signature search web server for diagnostic assay development. Nucleic Acids Research 2009, 37(2):229–234. 10.1093/nar/gkp286

    Article  Google Scholar 

  16. Frech C, Breuer K, Ronacher B, Kern T, Sohn C, Gebauer G: hybseek: Pathogen primer design tool for diagnostic multi-analyte assays. Computer Methods and Programs in Biomedicine 2009, 94(2):152–160. 10.1016/j.cmpb.2008.12.007

    Article  PubMed  Google Scholar 

  17. Zheng J, Close TJ, Jiang T, Lonardi S: Efficient Selection of Unique and Popular Oligos for Large EST Databases. Bioinformatics 2004, 20: 2101–2112. 10.1093/bioinformatics/bth210

    Article  CAS  PubMed  Google Scholar 

  18. Lee HP, Sheu TF, Tsei YT, Shih CH, Tang CY: Efficient Discovery of Unique Signatures on Whole-genome EST Databases. Proceeding of the 20th annual ACM Symposium on Applied Computing (SAC2005) 2005, 100–104.

    Google Scholar 

  19. Lee HP, Tsai YT, Shih CH, Sheu TF, Tang CY: A Novel Approach for Efficient Query of Single Nucleotide Variation in DNA Databases. Proceeding of the Eighth Annual International Conference on Research in Computational Molecular Biology (RECOMB 2004) 2004.

    Google Scholar 

  20. Zhang M, Kao B, Yip CL: A Comparison Study on Algorithms for Incremental Update of Frequent Sequences. Proceeding of the Second IEEE Conference on Data Mining (ICDM2002) 2002, 554.

    Google Scholar 

  21. Li T, Yang N, Xu Y, Ma J: An Incremental Algorithm for Mining Classification Rules in Incomplete Information Systems. Proceeding of the International Conference of the North American Fuzzy Information Processing Society (NAFIPS 2004) 2004, 446–449.

    Google Scholar 

  22. Varma A, Chalasani S: An Incremental Algorithm for TDM Switching Assignments in Satellite and Terrestrial Networks. IEEE Journal on Selected Areas in Communications (JSAC) 1992, 10: 364–377. 10.1109/49.126988

    Article  Google Scholar 

  23. Yang B, Liu DY: Incremental Algorithm for Detecting Community Structure in Dynamic Networks. Proceedings of 2005 International Conference on Machine Learning and Cybernetics 2005, 2284–2290. full_text

    Chapter  Google Scholar 

  24. Rabbat MG, Nowak RD: Quantized Incremental Algorithms for Distributed Optimization. IEEE Journal on Selected Areas in Communications (JSAC) 2005, 23: 798–808. 10.1109/JSAC.2005.843546

    Article  Google Scholar 

  25. Sun FX: Errors Estimating of Incompletion and Updating Strategy in IDS. Proceeding of 2006 International Conference on Machine Learning and Cybernetics 2006, 2948–2953. full_text

    Chapter  Google Scholar 

  26. Ponamgi MK, Manocha D, Lin MC: Incremental Algorithms for Collision Detection between Polygonal Models. IEEE Transactions on Visualization and Computer Graphics 1997, 3: 51–64. 10.1109/2945.582346

    Article  Google Scholar 

  27. Archambault D, Munzner T, Auber D: Smashing Peacocks Further: Drawing Quasi-Trees from Biconnected Components. IEEE Transactions on Visualization and Computer Graphics 2006, 12: 813–820. 10.1109/TVCG.2006.177

    Article  PubMed  Google Scholar 

  28. Han C, Sutherland B, Jewett P, Campbell M, Meincke L, Tesmer J, Iundt M, Fawcett J, Kim U, Deaven L, Doggett N: Construction of a BAC contig map of chromosome 16q by two-dimensional overgo hybridization. Genome Research 2000, 10(5):714–721. 10.1101/gr.10.5.714

    Article  CAS  PubMed  PubMed Central  Google Scholar 

Download references

Acknowledgements

The authors would like to thank the National Science Council of the Republic of China, Taiwan, for financially supporting this research under Grants 98-2218-E-126-001-MY2.

Author information

Authors and Affiliations

Authors

Corresponding author

Correspondence to Tzu-Fang Sheu.

Additional information

Authors' contributions

HPL carried out the unique signature studies, participated in the design of the study, programmed the algorithms, evaluated the experimental results and drafted the manuscript. TFS participated in its design and coordination, performed the mathematical analysis and drafted the manuscript. CYT convinced of the study and helped to gather data. All authors read and approved the final manuscript.

Electronic supplementary material

12859_2009_3589_MOESM1_ESM.PDF

Additional file 1: Parallel and Incremental Signature Discovery (PISD) algorithm. Assume l' is the desired signature length and d' is the mismatch tolerance. α and β are two integers that are related to the selected hamming-distance-based signature discovery algorithm. α = l'/2 and β = d'/2 for the IMUS algorithm, and α = l'/(d'/2 + 1) and β = 1 for the UO algorithm. The algorithm is designed for efficiently discovering signatures under the discovery condition (l', d'). (PDF 16 KB)

12859_2009_3589_MOESM2_ESM.PDF

Additional file 2: Parallel Entry List (PEL) heuristic. The heuristic yields a processing order list for index entries in which the entries that involve more candidate patterns are before those that involve fewer. The reordered entry list improves the performance of the proposed PISD algorithm. (PDF 16 KB)

12859_2009_3589_MOESM3_ESM.PDF

Additional file 3: Consecutive Multiple Discovery (CMD) algorithm. Let l be the desired signature length and d be the mismatch tolerance of pattern uniqueness. The algorithm discovers all implicit signatures under the discovery condition (l, d). (PDF 12 KB)

Authors’ original submitted files for images

Rights and permissions

Open Access This article is published under license to BioMed Central Ltd. This is an Open Access article is distributed under the terms of the Creative Commons Attribution License ( https://creativecommons.org/licenses/by/2.0 ), which permits unrestricted use, distribution, and reproduction in any medium, provided the original work is properly cited.

Reprints and permissions

About this article

Cite this article

Lee, H.P., Sheu, TF. & Tang, C.Y. A parallel and incremental algorithm for efficient unique signature discovery on DNA databases. BMC Bioinformatics 11, 132 (2010). https://doi.org/10.1186/1471-2105-11-132

Download citation

  • Received:

  • Accepted:

  • Published:

  • DOI: https://doi.org/10.1186/1471-2105-11-132

Keywords