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

An algorithm of discovering signatures from DNA databases on a computer cluster

Abstract

Background

Signatures are short sequences that are unique and not similar to any other sequence in a database that can be used as the basis to identify different species. Even though several signature discovery algorithms have been proposed in the past, these algorithms require the entirety of databases to be loaded in the memory, thus restricting the amount of data that they can process. It makes those algorithms unable to process databases with large amounts of data. Also, those algorithms use sequential models and have slower discovery speeds, meaning that the efficiency can be improved.

Results

In this research, we are debuting the utilization of a divide-and-conquer strategy in signature discovery and have proposed a parallel signature discovery algorithm on a computer cluster. The algorithm applies the divide-and-conquer strategy to solve the problem posed to the existing algorithms where they are unable to process large databases and uses a parallel computing mechanism to effectively improve the efficiency of signature discovery. Even when run with just the memory of regular personal computers, the algorithm can still process large databases such as the human whole-genome EST database which were previously unable to be processed by the existing algorithms.

Conclusions

The algorithm proposed in this research is not limited by the amount of usable memory and can rapidly find signatures in large databases, making it useful in applications such as Next Generation Sequencing and other large database analysis and processing. The implementation of the proposed algorithm is available at http://www.cs.pu.edu.tw/~fang/DDCSDPrograms/DDCSD.htm.

Background

Mutations give diversity to DNA sequences, which led to the evolution of a variety of different species and a multitude of species from the same ancestor. Even though they have similar DNA sequences from a common ancestor, due to evolution, these species also have their own unique DNA sequences which may be understood as the signatures for those particular species and can be used as a way to separate the species [1, 2]. For example, DNA signatures have already been used to identify 14 types of human pathogenic yeast [3].

Signatures are defined as DNA patterns that are significantly different from other sequences and appear only once in the sequence database. Thus, the purpose of signature discovery is to find all of the signatures in a database [4]. Much research has already been conducted in signature discovery. Amin et al. integrated multiple bioinformatics tools, including CG [5] and IslandPath [6], to determine horizontally transferred, pathotype-specific signature genes as targets for specific, high-throughput molecular diagnostic tools and reverse vaccinology screens [7]. PrimerHunter can be used to select highly sensitive and specific primers for virus subtyping identification [8]. To guarantee high sensitivity and specificity, PrimerHunter selects primers such that they efficiently amplify one of the target sequences representing different isolates of the subtype of interest, and none of the non-target sequences representing isolates of closely related virus subtypes. Accurate estimates of the melting temperature of mismatches, based on a nearest-neighbor model and calculated via a fractional programming algorithm, are used in PrimerHunter to ensure the desired amplification properties. TOFI is a tool for identifying oligonucleotide fingerprints for microarray-based pathogen diagnostic assays, which combines genome comparison tools, probe design software, and sequence alignment programs [9, 10]. TOFI is typically used to design fingerprints for a single genome. An enhanced multiple-genome pipeline presented by Satya et al. allows for efficient design of microarray probes common to groups of target genomes [11]. Insignia is web-based tool for identifying genomic signatures that are perfectly conserved by all target genomes and absent from all background genomes based on databases of bacterial and viral genomic sequences, which comprise over 8300 distinct organisms [12, 13]. TOFI designs signatures for microarray-based assays, and Insignia finds unique sequence segments that can be used to design both PCR and microarray signatures. Insignia and TOFI have the ability to identify genomic signatures that are common to multiple target genomes. Insignia and TOFI perform similar computations, but Insignia can be run online and requires less computational resources. TOFI and Insignia both build consensus regions among multiple genomes through pairwise alignments between the target genomes. Insignia reports only the unique segments in the target genomes and provides an option for users to run Primer3 [14], a PCR signature design software, on these unique segments. To quickly identify signatures in target and background genomes, Insignia has to maintain a specialized database containing pre-computed matches between every pair of genomes. However, the concomitant advantage in speed comes with the limitation that users are restricted to the target and background genomes that are part of the Insignia database, with no option to use other sequences as target or background genomes. TOPSI is a tool that extends the TOFI framework to design signatures for PCR-based pathogen diagnostic assays [15]. Like Insignia, TOPSI identifies unique segments through pairwise alignments between the input genomes. However, TOPSI goes beyond identification of unique segments, and incorporates modules to design PCR signatures from the unique segments and perform extensive specificity analysis on the designed signatures. TOPSI can provide a list of PCR signatures common to all input targets without manual manipulation. CaSSiS is capable of computing comprehensive sets of sequence- and group-specific signatures that guarantee a predefined Hamming distance, the number of mismatches with non-target sequences, from collections of deeply hierarchically clustered sequences [16]. CaSSiS tries to determine perfect group-covering signatures for every target group. For groups lacking a perfect common signature, CaSSiS finds signatures with maximal group coverage within a user-defined specificity. Zheng’s algorithm uses the Hamming distance between sequences as a measuring stick for signature discovery [17]. Suppose l and d are two whole numbers. An l-pattern represents the DNA sequence with a length of l. If two l-patterns are (l,d)-similar, this means that the Hamming distance between the two l-patterns does not exceed d. Moreover, if (l,d)-similar l-patterns could not be found, the pattern is defined as a signature under the discovery condition (l,d) in the database. Zheng’s algorithm can find all of the signatures in a database as defined above. The IMUS algorithm improved upon Zheng’s algorithm to give better discovery efficiency, but requires a larger memory [18]. Based on mathematical analysis, if a discovery condition is set as (l = 24,d = 4), when discovering signatures in a uniformly distributed database with a size of 230, IMUS requires only 7.4% of the string comparisons made by Zheng’s algorithm but creates 256 times more entries in the index. CMD is designed to discover all implicit signatures from DNA databases, where implicit signatures are signatures that satisfy discovery conditions looser than a given discovery condition [19].

However, none of the above algorithms distribute the computation of the databases onto multiple computers in a cluster. To use the algorithms in such a way, additional scripts must be applied to control the distribution and collection of the databases and results. Unfortunately, many of these approaches do not provide a formal definition for their distribution strategies. Some of the approaches, for example Insignia and CaSSiS, provide strategies to distribute the computation of the databases onto multiple computers in a cluster, but the steps of distribution and collection are not automatic. Manual manipulation is necessary to use these algorithms to distribute the computation of the databases onto multiple computers in a cluster. The match pipeline in Insignia applies strategies to reduce redundancy in sub-datasets, but relies mainly on preprocessing. PTPan [20], Jellyfish [21] and DSK [22] apply different strategies to avoid the necessity of loading the whole database into memory for searches. Each of the three approaches uses secondary storage. For example, Jellyfish and DSK use hash tables to compute the k-mers for a given k. Both algorithms achieve space efficiency by keeping most of the hash tables on disk. When counting k-mers over multiple hash tables, Jellyfish would need to store the intermediate k-mer counts on disk, which requires significantly more space, and the merge phase is not parallelized. This makes the algorithm time intensive for large databases. IMUS and Zheng’s algorithm both have two disadvantages. First, these algorithms require that the entire database to be processed (including all of the data structures that were used during computation) be loaded into memory, meaning that when the amount of data exceeds the memory capacity, these algorithms are unable to complete processing and cannot be used. Second, they are both sequential algorithms, so the time necessary for larger databases is extensive. Due to these two disadvantages, neither IMUS nor Zheng’s algorithm is suitable for applications that require processing large databases. This is a particular problem with the development of Next Generation Sequencing (NGS), as the rate of creation of sequence data is increasing daily, leading also to larger databases. This renders both IMUS and Zheng’s algorithm, which are unable to process large amounts of data and require longer processing times, unsuitable for NGS data analysis.

Divide-and-conquer is a computational strategy for solving both extensive and complicated problems and processing large amounts of data. The basic thought behind this is as follows: suppose the amount of data that needs to be processed for a problem is represented by |D|. If |D| is smaller, it can be easily solved and can be solved directly. Otherwise, the problem may be divided into multiple smaller scale subproblems with close similarities to the original problem. These subproblems may be solved recursively, and the results combined to find a solution to the original problem. Therefore, with the divide-and-conquer strategy, each recursion may include three main steps: (1) solve: if the problem is smaller in scale and easy to solve, it looks for a solution directly; (2) divide-and-recur: divide the original problem into multiple smaller scale subproblems closely similar to the original problem, then recursively try to find the solution to each subproblem; (3) combine: take the solutions from the subproblems and combine to find the solution to the original problem [23]. In addition, as technology has matured, the price of multi-core CPUs has continued to fall, so the possibility to use parallel processing technology on a computer cluster to enhance processing efficiency has greatly improved. In fact, parallel processing technology is already used in many bioinformatics research fields, such as sequence alignment and analysis, protein structure prediction, and motif finding [24–31]. If we can use the divide-and-conquer strategy and parallel processing technology in signature discovery, this will improve the efficiency of discovery in large databases, which will be immensely helpful.

In this research, we propose a signature discovery algorithm called distributed divide-and-conquer-based signature discovery (DDCSD) algorithm. The DDCSD algorithm is designed specifically for discovering signatures on a computer cluster. The DDCSD algorithm automatizes the steps of distributing the database and collecting the unique signatures. The signatures are discovered from the database and provided to users without manual manipulation. The DDCSD algorithm uses the divide-and-conquer strategy to overcome the problem of processing large databases and compares multiple patterns in parallel to accelerate signature discovery. Therefore, the algorithm not only shortens the amount of time needed for discovery, it also is able to process the large databases that could not be processed in the past using IMUS and Zheng’s algorithm. In addition, by setting the threshold value of the direct discovery, DDCSD can limit the memory requirement in discovery to the memory size of the computers in the cluster. More specifically, the DDCSD algorithm can process any amount of data and is not limited by the amount of memory available. The DDCSD algorithm is implemented using a basic divide-and-conquer strategy as the basic structure. First, it decides whether to do direct discovery based on the size of the database. If the database is too large to load in its entirety, it will split the database into two equal parts and recursively processes the parts. As the recursive processing is in progress, the amount of data in a single part will gradually decrease until it can load the single part all into the memory of one computer in the cluster at one time. At the end, it will combine the results that were found separately in the two different parts and find the signatures in the original database. The DDCSD algorithm gives the formal definition in recursion for the dataset distribution strategy, that is not provided by the previous approaches. The DDCSD algorithm includes main and discovery routines. The main routine organizes discovery in a planned way. The discovery routine is used to find the unique patterns from a specified dataset in another dataset. The computation of discovery and collection in DDCSD is distributed onto discovery nodes for parallelization. Based on the experiments made on the human whole-genome EST database that has approximately 2.46G bases, the DDCSD algorithm proposed here can successfully process that database. Whereas previous algorithms could not process databases so large, the DDCSD algorithm took 1.89 hours to find all of the signatures under the discovery condition (30,2) on the cluster of ten discovery computers with 32 GB memory. The main contribution of this research is utilizing the divide-and-conquer strategy in signature discovery to process discovery in large databases, something previous algorithms were unable to do, and providing a parallel signature discovery algorithm on a cluster, that can process databases of any size regardless of the amount of memory available. This algorithm can be applied to NGS data analysis and other analysis of large databases.

Methods

Suppose that l and d represent the length and the number of allowed mismatches of signatures, respectively, and Λ is a dataset made up of l-patterns. We define signatures in Λ under a discovery condition (l,d) as patterns that exist in Λ and where there are no other (l,d)-similar patterns inside of Λ. The purpose of this research is to utilize a divide-and-conquer strategy to provide a parallel algorithm that can rapidly discover the signatures in datasets with massive amounts of data on a computer cluster.

For any subset Θ of Λ, if no (l,d)-similar pattern can be found in Θ, this pattern is considered unique in Θ. According to this definition, we can deduce that if one pattern P is a signature in Λ, then P must be unique in Θ. Therefore, if we divide Λ into two partitions of equal size (Λ i and Λ j ), then P will be a signature for either Λ i or Λ j and will be unique to the other partition. Thus, when the signatures of Λ i and Λ j are combined, they will include all of the signatures for Λ, making them valid candidates to discover signatures in Λ. Most importantly, no matter how many levels of recursive processing are applied, this characteristic still stands, meaning that we can use the divide-and-conquer strategy on a computer cluster to deal with the original problem posed to signature discovery algorithms where they could not process large databases. Using the above as the foundation, we designed a distributed divide-and-conquer-based signature discovery (DDCSD) algorithm that can rapidly discover the signatures that satisfy the discovery condition (l,d) in a large dataset on a computer cluster. The DDCSD algorithm includes main and discovery routines. The discovery routine accepts the candidate and source datasets that are made up of l-patterns and will find the patterns that are unique in the source in the candidate. It must be made clear that when the candidate and source are set as the same dataset, the patterns found by the discovery routine are the signatures for the dataset. Each of the computers in the cluster is called a node. The node that handles the main routine is called a main node, and those that handle the discovery routine are called discovery nodes.

The main routine of the DDCSD algorithm is shown in Figure 1. The symbols used in DDCSD are presented in Table 1. The DDCSD algorithm first examines the size of the dataset Λ; if the number of patterns is less than or equal to the preset threshold value, N, then it will automatically send Λ to a discovery node and use the discovery routine to find the signatures in Λ. The discovery result is sent back to the main node. The threshold value is decided based on the memory space of discovery nodes and is set so that the patterns in Λ (including all of the used data structures) can be loaded into the memory. On the other hand, if the number of patterns is more than the preset threshold, then Λ will be divided into two equal partitions Λ i and Λ j , with each being recursively processed individually. After recursive processing, the algorithm combines the results to find the signatures of Λ. Suppose that Ω i and Ω j represent all of the signatures in Λ i and Λ j , respectively. Because all signatures of Λ must be present in either Ω i or Ω j and will be unique to the other partition, additional comparisons must be made between Ω i and Λ j as well as between Ω j and Λ i to find the patterns unique in the other partition and delete the non-unique ones. Therefore, DDCSD uses the discovery routine to find the unique patterns in Λ j that are in Ω i and the unique patterns in Λ i that are in Ω j . These two discovery results are then combined, with the final result being the signatures of Λ.

Figure 1
figure 1

The main routine of the DDCSD algorithm. The algorithm discovers signatures from Λ under the discovery condition (l,d), where l and d are the length and the number of allowed mismatches of the signatures, and, Λ is a dataset made up of l-patterns. |Λ| represents the number of patterns in Λ. N is the preset threshold value for direct discovery.

Table 1 The symbols and their definitions in the DDCSD algorithm

The following example illustrates the processes of DDCSD. It is assumed that the number of patterns in a given dataset Λ is |Λ| = 4N, where N is the threshold value of direct discovery. As |Λ| is more than N, according to the processing rule of DDCSD, Λ is divided into two partitions, Λ1 and Λ2, of equal size with |Λ|/2 = 2N. As |Λ1| is still greater than N, Λ1 is further divided into two partitions, Λ3 and Λ4, of size N. Now, since |Λ3| is not greater than N, DDCSD stops dividing Λ3 into partitions, and executes DiscoveryRoutine (Λ3,Λ3,l,d) on a discovery node, which yields the signature set, Ω3, from Λ3. Similarly, as |Λ4| is not more than N, DDCSD directly discovers the signature set Ω4 from Λ4 on a discovery node. Then, DDCSD executes DiscoveryRoutine (Ω3,Λ4,l,d) and DiscoveryRoutine (Ω4,Λ3,l,d) on discovery nodes, respectively. The union of the obtained Ω3 and Ω4 is the signature set, Ω1, of Λ1. Similarly, DDCSD processes Λ2 by dividing it into two partitions, Λ5 and Λ6, each with a size of N. From Λ5 and Λ6, the signature sets Ω5 and Ω6 are discovered. Then, Ω5 and Ω6 are combined to obtain the signature set of Λ2, namely Ω2. Finally, DDCSD combines Ω1 and Ω2 to get the signature set of Λ, namely Ω. Table 2 shows the sequence of signature sets identified by DDCSD. The required processes for discovering the signature sets are also presented in the table. The discovery processes are encoded for clear illustration. Table 3 lists the processing time of the discovery processes shown in Table 2. Assume that A, B, C, D, E, F, G, H, I and J are discovery processes. The cluster contains two discovery nodes, namely D N1 and D N2. First, DDCSD assigns D N1 and D N2 to discovery processes A and B, respectively. After the processing of discovery process A is completed, D N1 is immediately assigned to the next discovery process, discovery process C. D N1 and D N2 are assigned to process the discovery processes, until all of the discovery processes are completed. In this case, D N1 is assigned to discovery processes A, C, E, F, G and J, and D N2 is assigned to discovery processes B, D, H and I. The discovery time consumed by D N1 and D N2 is 15 seconds each, so the overall discovery time is 15 seconds. It is noteworthy that some of the discovery processes are sequentially interdependent. The sequential interdependence might affect the overall processing time for discovering signatures on the computer cluster. That is, when the preceding discovery process needs relatively more processing time, the successive dependent discovery process might have to wait. For example, DiscoveryRoutine (Ω6,Λ5,l,d) can only be executed after DiscoveryRoutine (Λ6,Λ6,l,d) is completed, that is, discovery process H can only be executed after discovery process F is done. Assume the processing time of discovery process F is 7 seconds. In this case, although discovery process G is completed, discovery process H cannot be immediately processed because discovery process F is still executing. Therefore, discovery process H has to wait. This reduces the discovery efficiency of DDCSD.

Table 2 An example of DDCSD
Table 3 Processing time for the discovery processes shown in Table 2

Suppose that P and Q are two l-patterns. If P is divided into equal and non-overlapping ⌈l/γ⌉ number of γ-patterns, these γ-patterns are called γ-segments of P. Pγ,i represents the i-th γ-segment in P. P is called (γ,i,δ)-matched to a γ-pattern Γ if Pγ,i is (γ,δ)-similar to Γ. We arrive at the observation that if P and Q are (l,d)-similar, for a given γ, there will be at least one i such that P is (γ,i,⌊γ d/l⌋)-matched to Qγ,i. Using the observation as the foundation, we designed the discovery routine of DDCSD.

The discovery routine of the DDCSD algorithm runs on discovery nodes. The discovery routine allows multiple processors to compare similarity of different patterns at the same time to allow for faster discovery speed. The discovery routine is shown in Figure 2. Suppose that the candidate and source datasets received by the discovery routine are Ξ and Θ, respectively. First of all, the discovery routine will set a suitable γ according to the memory that is available in the discovery node, where γ is a whole number between ⌈l/(d+1)⌉ and ⌈l/2⌉. The larger the number, the less strings are compared during a discovery, but more memory is needed. Conversely, the smaller the number, the more strings are compared during a discovery, but the memory requirement will be smaller. Suppose that Υ is a γ-pattern. A (Υ,γ,i,l,d)-group is a group of l-patterns. All of the l-patterns are (γ,i,⌊γ d/l⌋)-matched to Υ. According to the γ-segments included in the l-patterns in Ξ and Θ, the discovery routine assigns the l-patterns to (Υ,γ,i,l,d)-groups. More specifically, if P is in Ξ, then P will be put into (Pγ,i,γ,i,l,d)-groups, where 1 ≤ i ≤ ⌈l/γ⌉. For exampmle, assume that l, d and γ are 4, 2 and 2, respectively. If P = ’ACGT’, then P will be put into (’AC’,2,1,4,2)- and (’GT’,2,2,4,2)-groups. Assume that Δ is one of the (Pγ,i,γ,i,l,d)-groups. ΔΞ represents the set of Ps in Δ. According to the size of the memory, the discovery routine can pull the patterns that have yet to be processed in Θ. If there are too many patterns in Θ which cannot be loaded into the memory all at once, it can split them into multiple parts and load and process the parts one at a time. Suppose that Φ represents the group of patterns that are loaded at this time. If Q is in Φ and Q is (γ,i,⌊γ d/l⌋)-matched to a γ-pattern Γ, Q will be put into (Γ,γ,i,l,d)-groups, where 1 ≤ i ≤ ⌈l/γ⌉. For example, assume that l, d and γ are 4, 2 and 2, respectively. If Q = ’TGCA’, then Q will be put into (Γ1,2,1,4,2)- and (Γ2,2,2,4,2)-groups, where Γ1 ∈ {’TG’,’GG’,’CG’,’AG’,’TT’,’TC’,’TA’} and Γ2 ∈ {’CA’,’AA’,’GA’,’TA’,’CC’,’CG’,’CT’}. Assume that Δ is one of the (Γ,γ,i,l,d)-groups. ΔΦ represents the set of Qs in Δ. Pairing this definition with the previous observation, we find that the patterns that are (l, d)-similar to the patterns in ΔΞ must be present in ΔΦ. Therefore, for the patterns in ΔΞ, when examining whether they are unique, this principle can be applied to limit the discovery to similar patterns to those patterns to decrease the number of patterns compared. Each time a processor in the discovery node completes the task that it is given, the discovery routine takes a (Υ,γ,i,l,d)-group for that processor to process, which allows for parallel processing. Suppose the (Υ,γ,i,l,d)-group taken was Δ. For an l-pattern P in ΔΞ, when searching for (l,d)-similar patterns to P in Φ, the discovery routine only compares P and the patterns in ΔΦ to find whether there are (l,d)-similar patterns to P. If no (l,d)-similar pattern to P is found in ΔΦ, then it means that P is unique in Φ. Conversely, it is not unique and is deleted. The discovery routine repeats the above process until all (Υ,γ,i,l,d)-groups are processed.

Figure 2
figure 2

The discovery routine of the DDCSD algorithm. The algorithm runs on a discovery node. The algorithm discovers the unique patterns from Θ that are in Ξ under the discovery condition (l,d), where l and d are the length and the number of allowed mismatches of signatures, and, Ξ and Θ are datasets made up of l-patterns.

Results and discussion

Mathematical analysis

The time complexity of the discovery routine used in the DDCSD algorithm is analyzed and the results are integrated, yielding the time complexity of the DDCSD algorithm. The memory consumption is also analyzed.

Suppose that l and d represent the length and the number of allowed mismatches of signatures, respectively. γ is a whole number between ⌈l/(d + 1)⌉ and ⌈l/2⌉. Ξ and Θ that are made up of l-patterns are the candidate and source datasets received by the discovery routine. |Ξ| and |Θ| denote the number of patterns in Ξ and Θ. According to the γ-segments included in the l-patterns in Ξ and Θ, the l-patterns are assigned to (Υ,γ,i,l,d)-groups, where Υ is a γ-pattern and 1 ≤ i ≤ ⌈l/γ⌉. Assume Ψ is the set of all possible (Υ,γ,i,l,d)-groups. Δ ∈ Ψ. ΔΞ = Δ ∩ Ξ and ΔΘ = Δ ∩ Θ. Since the patterns that are (l,d)-similar to the patterns in ΔΞ must be in ΔΘ, each pattern in ΔΞ requires |ΔΘ| string comparisons to check whether it is unique, where |ΔΞ| and |ΔΘ| are the number of patterns in ΔΞ and ΔΘ, respectively. Each of the string comparisons includes α = l-γ character comparisons. The total number of character comparisons in the discovery routine, denoted as T DR (|Ξ|,|Θ|), is:

T DR ( | Ξ | , | Θ | ) = ∑ Δ ∈ Ψ α | Δ Ξ | | Δ Θ |

Suppose that Ξ and Θ are in uniform distribution. In this case, Ψ should contain 4γβ (Υ,γ,i,l,d)-groups, where β = ⌈l/γ⌉. |ΔΞ| ≈ β|Ξ|/(4γβ) = |Ξ|/4γ and |ΔΘ| ≈ κ β|Θ|/(4γβ) = κ|Θ|/4γ, where κ= ∑ k = 0 ⌊ γ d / l ⌋ 3 k γ k . In the uniformly distributed case, the total amount of character comparisons in the discovery routine, denoted as T ¯ DR (|Ξ|,|Θ|), is:

T ¯ DR ( | Ξ | , | Θ | ) = ∑ Δ ∈ Ψ α | Δ Ξ | | Δ Θ | = α ( 4 γ β ) ( | Ξ | / 4 γ ) ( κ | Θ | / 4 γ ) = α β κ | Ξ | | Θ | / 4 γ

Suppose that the input dataset Λ has a uniform distribution, and contains |Λ| = 2nN patterns, where N is the threshold value for direct discovery and n is a whole number. In each recursion, the division can be done by performing a sequential scan on Λ when dividing Λ into two partitions. The computational cost of division is η1|Λ|, where η1 is a constant. The amount of patterns sent to and received from discovery nodes in data transmission for processing each partition are all |Λ|/2. The total computational cost for data division and transmission in each recursion is η1|Λ| + 2(η2|Λ|/2 + η3|Λ|/2) = η0|Λ|, where η0, η2 and η3 are constants and η0 = η1 + η2 + η3. The computational cost of using DDCSD to discover signatures from Λ, denoted as T ¯ DDCSD (|Λ|), is:

T ¯ DDCSD ( | Λ | ) = 2 T ¯ DDCSD ( | Λ | / 2 ) + η 0 | Λ | = 2 ( 2 T ¯ DDCSD ( | Λ | / 4 ) + η 0 | Λ | / 2 ) + η 0 | Λ | = 2 ( 2 ( 2 T ¯ DDCSD ( | Λ | / 8 ) + η 0 | Λ | / 4 ) + η 0 | Λ | / 2 ) + η 0 | Λ | = ⋯ ⋯ = 2 n T ¯ DDCSD ( | Λ | / 2 n ) + n η 0 | Λ | = 2 n T ¯ DDCSD ( N ) + η | Λ | = 2 n T ¯ DR ( N , N ) + η | Λ | = 2 n α β κ N 2 / 4 γ + η | Λ | = 2 - n α β κ ( 2 n N ) 2 / 4 γ + η | Λ | = ζ | Λ | 2 + η | Λ |

where ζ= 2 - ( n + 2 γ ) αβκ= 2 - ( n + 2 γ ) (l-γ)⌈l/γ⌉ ∑ k = 0 ⌊ γ d / l ⌋ 3 k γ k and η = n η0.

The computational cost for data division and transmission, η|Λ|, is not too large in comparison with the computational cost for discovery, ζ|Λ|2. The time complexity of using DDCSD to discover signatures from Λ is O(|Λ|2).

Suppose that the input dataset Λ has a uniform distribution. According to the γ-segments included in the l-patterns in Λ, the l-patterns are assigned to 4γβ (Υ,γ,i,l,d)-groups. Each of the (Υ,γ,i,l,d)-groups should contain approximately |Λ|/4γ + κ|Λ|/4γ patterns. In DDCSD, the memory is mainly used to store the patterns in the (Υ,γ,i,l,d)-groups. The total memory consumption in DDCSD, denoted as M ¯ DDCSD (|Λ|), is:

M ¯ DDCSD ( | Λ | ) = 4 γ β ( | Λ | / 4 γ + κ | Λ | / 4 γ ) = β ( 1 + κ ) | Λ | = τ | Λ |

where τ=β(1+κ)=⌈l/γ⌉ 1 + ∑ k = 0 ⌊ γ d / l ⌋ 3 k γ k .

The discovery node handles the discovery routine in DDCSD. If there are too many patterns in the source and candidate datasets, so that they cannot be loaded into memory all at once, the discovery routine will split them into multiple parts and load and process the parts one at a time. In addition, the threshold value for direct discovery, N, is decided based on the memory space of discovery nodes so that the patterns in the datasets can be loaded into the memory. Thus, the number of patterns in each of the parts is on the order of N. According to the γ-segments included in the l-patterns in the parts, the l-patterns are assigned to (Υ,γ,i,l,d)-groups. In discovery nodes, the memory is mainly used to store the patterns in the (Υ,γ,i,l,d)-groups. Based on the above discussion about the total memory consumption in DDCSD, the memory consumption of each discovery node is τ|N|.

The space complexity of using DDCSD to discover signatures in Λ is O(|Λ|). The space complexity of a discovery node is O(N).

Performance evaluation

The experimental platform that we used was a cluster of eleven computers, including one main node and ten discovery nodes. The main node was equipped with an Intel Core i7 CPU 870 at 2.93 GHz, 16 GB of memory and 1.5 TB of disk space. Each of the discovery nodes was equipped with an Intel Core i7 CPU 3770 K at 3.50 GHz, 32 GB of memory and 1 TB disk space. The operating system was CentOS release 6.3, and the algorithm tested was coded in JAVA and compiled in JDK 1.6. In this experiment, we used the human whole-genome EST database with 2.46G bases to test the performance of the DDCSD algorithm. In order to avoid impacting the testing, we deleted all remarks and sequences shorter than 36 bases in the database and replaced all universal characters, for example ‘don’t care’, in the sequences with an ‘A’.

When testing the DDCSD algorithm, each recursion only loads the beginning and ending position of the data partition and not the actual data. Only when the discovery needs to happen does it load the data completely into the memory in order to avoid taking up large amounts of memory. In the tests, each l-pattern is divided into 2 segments, with the γ value set to l/2.

In terms of testing the discovery performance of the DDCSD algorithm, we used the human whole-genome EST database as the experimental dataset, ten discovery nodes, and a dataset threshold for direct discovery at 125 MB. The results are shown in Table 4. Our data shows that the DDCSD algorithm can discover all signatures under the discovery condition (30,2) from the human whole-genome EST database in 6820 seconds, about 1.89 hours, and discover all signatures under the discovery condition (24,4) from the database in 52366 seconds, about 14.55 hours. When the length of patterns were the same, if the mismatch tolerance d is larger, a larger number of strings are compared. Thus, time required is significantly greater than that of when the d value is lower. Comparison is difficult when dealing with implementations that were optimized for different tasks. The requirements of discovery algorithms with regard to hardware components, for example the demand on memory size, are different. Although in cases where there is a sufficient amount of memory many existing discovery algorithms, such as Tallymer [32], are able to process the dataset in the experiment. However, the memory requirement of those algorithms is often too large so that they cannot be executed on general-purpose computers with normal memory size. DDCSD uses a divide-and-conquer strategy to recursively divide large datasets into smaller datasets until the split datasets can be processed using the current memory size of discovery nodes. Then, the discovered signature sets from each of the split datasets are integrated to obtain the signature set of the original dataset. Therefore, when the memory size available for the discovery nodes is limited, even to the 32 GB or 16 GB common on regular personal computers or smaller, DDCSD can still process large datasets. The processing ability of DDCSD is not limited by memory size. In addition, by setting the threshold value for direct discovery, DDCSD can limit the memory requirement of discovery nodes during discovery, which ensures that DDCSD can run on a cluster of discovery nodes of different memory sizes.

Table 4 The discovery time for the DDCSD algorithm to discover signatures from the human whole-genome EST database under various discovery conditions

In order to test the impact of the number of discovery nodes on the discovery performance of DDCSD, under the discovery condition (24,2), we utilized two to ten discovery nodes to perform signature discovery on the human whole-genome EST database. The dataset threshold for direct discovery is set to 125 M bases. We define acceleration as the ratio of the discovery time when two discovery nodes are used to the discovery time when various number of discovery nodes are used. The acceleration indicates the improvement in discovery performance. The results are shown in Table 5 and Figure 3. Table 5 presents the discovery time for the DDCSD algorithm to discover signatures when various number of discovery nodes were used, and Figure 3 presents the acceleration due to the various number of discovery nodes. As we can see, when the number of discovery nodes increases, the discovery time decreases and acceleration increases. For example, when using four discovery nodes, the discovery performance is 1.94 times what it was with two discovery nodes. When using ten discovery nodes, the discovery performance is 4.69 times that of when there was two discovery nodes. The improved discovery performance is linearly related to the number of discovery nodes.

Table 5 The discovery time when various number of discovery nodes were used
Figure 3
figure 3

The acceleration when using various number of discovery nodes. The values within the inside of the bars are the number of discovery nodes.

Finally, we tested the effect of thresholds for direct discovery on the discovery performance of DDCSD. This test was done on the human whole-genome EST database using ten discovery nodes with the discovery condition set as (24,2). The threshold value N was chosen between 35 and 125 MB. The results are shown in Figure 4. From the results, we can see that with the same amount of data, as N decreases, discovery time increases, and, discovery time decreases with the increase of N. For example, if N is set to 35 MB, then discovery time is approximately 24.68% more than that of when N is set to 125 MB. The smaller the N value, the more recursions are necessary in discovery, and the need for additional computation and overheads in data transmission also increases. However, the memory requirement for discovery processes decreases with the decrease of N, as is intuitively obvious. The results also indicate that the size of the database that the DDCSD algorithm can process is not limited by the amount of memory available. As long as a suitable N value is set based on the size of the memory in discovery nodes, even when facing large amounts of data, it can still be successfully processed.

Figure 4
figure 4

The discovery time when using various thresholds for direct discovery. The values within the inside of the bars are the threshold values.

Conclusions

In this research, we proposed a distributed divide-and-conquer-based signature discovery (DDCSD) algorithm. The DDCSD algorithm uses a divide-and-conquer strategy to overcome the problem of processing larger databases, thus solving the disadvantage of previous algorithms that could not process large databases. Also, a parallel computation mechanism on a computer cluster was used to accelerate the signature discovery. Therefore, this algorithm is not limited by the amount of memory available, and can rapidly find signatures in large databases, making it applicable to analysis of NGS and other large amounts of data.

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  PubMed  CAS  Google Scholar 

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

    Article  PubMed  CAS  Google Scholar 

  3. 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 

  4. 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  PubMed  CAS  Google Scholar 

  5. Roten CA, Gamba P, Barblan JL, Karamata D: Comparative genometrics (cg): a database dedicated to biometric comparisons of whole genomes. Nucleic Acids Res. 2002, 30 (1): 142-144. 10.1093/nar/30.1.142.

    Article  PubMed Central  PubMed  CAS  Google Scholar 

  6. Hsiao W, Wan I, Jones SJ, Brinkman FS: Islandpath: aiding detection of genomic islands in prokaryotes. Bioinformatics. 2003, 19 (3): 418-420. 10.1093/bioinformatics/btg004.

    Article  PubMed  CAS  Google Scholar 

  7. Amin HM, 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-10.1186/1471-2105-10-7.

    Article  Google Scholar 

  8. Duitama J, Kumar DM, Hemphill E, Khan M, Mandoiu II, Nelson CE: Primerhunter: a primer design tool for pcr-based virus subtype identification. Nucleic Acids Res. 2009, 37: 2483-2492. 10.1093/nar/gkp073.

    Article  PubMed Central  PubMed  CAS  Google Scholar 

  9. Vijaya SR, Zavaljevski N, Kumar K, Reifman J: A high-throughput pipeline for designing microarray-based pathogen diagnostic assays. BMC Bioinformatics. 2008, 9: 185-10.1186/1471-2105-9-185.

    Article  Google Scholar 

  10. Tembe W, Zavaljevski N, Bode E, Chase C, Geyer J, Wasieloski L, Benson G, Reifman J: Oligonucleotide fingerprint identification for microarray-based pathogen diagnostic assays. Bioinformatics. 2007, 23 (1): 5-13. 10.1093/bioinformatics/btl549.

    Article  PubMed  CAS  Google Scholar 

  11. Satya RV, Zavaljevski N, Kumar K, Bode E, Padilla S, Wasieloski L, Geyer J, Reifman J: In silico microarray probe design for diagnosis of multiple pathogens. BMC Genomics. 2008, 9: 496-10.1186/1471-2164-9-496.

    Article  Google Scholar 

  12. 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 Comput Biol. 2007, 3 (5): e98-10.1371/journal.pcbi.0030098.

    Article  PubMed Central  PubMed  Google Scholar 

  13. Phillippy AM, Ayanbule K, Edwards NJ, Salzberg SL: Insignia: a dna signature search web server for diagnostic assay development. Nucleic Acids Res. 2009, 37 (2): 229-234.

    Article  Google Scholar 

  14. Rozen S, Skaletsky H: Primer3 on the www for general users and for biologist programmers. Methods Mol Biol. 2000, 132: 365-386.

    PubMed  CAS  Google Scholar 

  15. Satya RV, Kumar K, Zavaljevski N, Reifman J: A high-throughput pipeline for the design of real-time pcr signatures. BMC Bioinformatics. 2010, 11: 340-10.1186/1471-2105-11-340.

    Article  Google Scholar 

  16. Bader KC, Grothoff C, Meier H: Comprehensive and relaxed search for oligonucleotide signatures in hierarchically clustered sequence datasets. Bioinformatics. 2011, 27: 1546-1554. 10.1093/bioinformatics/btr161.

    Article  PubMed  CAS  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  PubMed  CAS  Google Scholar 

  18. Lee HP, Sheu TF, Tsai YT, Shih CH, Tang. C Y: Efficient discovery of unique signatures on whole-genome est databases. Proceeding of the 20th Annual ACM Symposium on Applied Computing (SAC2005). 2005, Santa Fe: Association for Computing Machinery, 100-104.

    Google Scholar 

  19. Lee HP, Sheu TF, Tang CY: A parallel and incremental algorithm for efficient unique signature discovery on dna databases. BMC Bioinformatics. 2010, 11: 132-10.1186/1471-2105-11-132.

    Article  PubMed Central  PubMed  Google Scholar 

  20. Eissler T, Hodges C P Meier: Ptpan-overcoming memory limitations in oligonucleotide string matching for primer/probe design. Bioinformatics. 2011, 27: 2797-2805. 10.1093/bioinformatics/btr483.

    Article  PubMed  CAS  Google Scholar 

  21. Marcais G, Kingsford C: A fast, lock-free approach for efficient parallel counting of occurrences of k-mers. Bioinformatics. 2011, 27: 764-770. 10.1093/bioinformatics/btr011.

    Article  PubMed Central  PubMed  CAS  Google Scholar 

  22. Rizk G, Lavenier D, Chikhi R: Dsk: k-mer counting with very low memory usage. Bioinformatics. 2013, 29 (5): 652-653. 10.1093/bioinformatics/btt020.

    Article  PubMed  CAS  Google Scholar 

  23. Cormen TH, Leiserson CE, Rivest RL: Introduction to Algorithms. 2009, Cambridge: MIT Press

    Google Scholar 

  24. Grundy WN, Bailey TL, Elkan CP: Parameme: a parallel implementation and a web interface for a dna and protein motif discovery tool. Bioinformatics. 1999, 12: 303-310.

    Article  Google Scholar 

  25. Ho ES, Jakubowski CD, Gunderson SI: itriplet, a rule-based nucleic acid sequence motif finder. Algorithm Mol Biol. 2009, 29: 14-

    Article  Google Scholar 

  26. Green JR, Korenberg MJ, Aboul-Magd. M O: Pci-ss: Miso dynamic nonlinear protein secondary structure prediction. BMC Bioinformatics. 2009, 10: 222-10.1186/1471-2105-10-222.

    Article  PubMed Central  PubMed  Google Scholar 

  27. Venkatesan A, Gopal J, Candavelou M, Gollapalli S, Karthikeyan K: Computational approach for protein structure prediction. Healthcare Inform Res. 2013, 19: 137-147. 10.4258/hir.2013.19.2.137.

    Article  Google Scholar 

  28. Chen Y, Wan A, Liu W: A fast parallel algorithm for finding the longest common sequence of multiple biosequences. BMC Bioinformatics. 2006, 7 (4): 4-

    Article  Google Scholar 

  29. Rognes T: Paralign: a parallel sequence alignment algorithm for rapid and sensitive database searches. Nucleic Acids Res. 2001, 29: 1647-1652. 10.1093/nar/29.7.1647.

    Article  PubMed Central  PubMed  CAS  Google Scholar 

  30. Ebedes J, Datta. A: Multiple sequence alignment in parallel on a workstation cluster. Bioinformatics. 2004, 20 (7): 1193-1195. 10.1093/bioinformatics/bth055.

    Article  PubMed  CAS  Google Scholar 

  31. Sun W, Al-Haj S, He J: Parallel computing in protein structure topology determination. Proceedings of 26th Army Science Conference. 2008, Orlando: Assistant Secretary of Army, cp8.

    Google Scholar 

  32. Kurtz S, Narechania A, Stein JC, Ware D: A new method to compute k-mer frequencies and its application to annotate large repetitive plant genomes. BMC Genomics. 2008, 9: 517-10.1186/1471-2164-9-517.

    Article  PubMed Central  PubMed  Google Scholar 

Download references

Acknowledgements

The authors would like to thank the Ministry of Science and Technology of the Republic of China, Taiwan, for financially supporting this research under Grants [NSC102-2218-E-040-001, NSC102-2221-E-040-004 and MOST103-2218-E-040-001 to H.P. Lee] and [MOST103-2218-E-126-002 to T.F. Sheu]; and the anonymous reviewers for their constructive suggestions.

Author information

Authors and Affiliations

Authors

Corresponding author

Correspondence to Tzu-Fang Sheu.

Additional information

Competing interests

The authors declare that they have no competing interests.

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, drafted the manuscript, convinced of the study and helped to gather data. Both authors read and approved the final manuscript.

Authors’ original submitted files for images

Rights and permissions

This article is published under license to BioMed Central Ltd. This is an Open Access article distributed under the terms of the Creative Commons Attribution License (http://creativecommons.org/licenses/by/4.0), which permits unrestricted use, distribution, and reproduction in any medium, provided the original work is properly credited. The Creative Commons Public Domain Dedication waiver (http://creativecommons.org/publicdomain/zero/1.0/) applies to the data made available in this article, unless otherwise stated.

Reprints and permissions

About this article

Check for updates. Verify currency and authenticity via CrossMark

Cite this article

Lee, H.P., Sheu, TF. An algorithm of discovering signatures from DNA databases on a computer cluster. BMC Bioinformatics 15, 339 (2014). https://doi.org/10.1186/1471-2105-15-339

Download citation

  • Received:

  • Accepted:

  • Published:

  • DOI: https://doi.org/10.1186/1471-2105-15-339

Keywords