Ruzzo–Tompa algorithm

The Ruzzo–Tompa algorithm or the RT algorithm[1] is a linear-time algorithm for finding all non-overlapping, contiguous, maximal scoring subsequences in a sequence of real numbers.[2] The Ruzzo–Tompa algorithm was proposed by Walter L. Ruzzo and Martin Tompa.[3] This algorithm is an improvement over previously known quadratic time algorithms.[1] The maximum scoring subsequence from the set produced by the algorithm is also a solution to the maximum subarray problem.

The Ruzzo–Tompa algorithm has applications in bioinformatics,[4] web scraping,[5] and information retrieval.[6]

Applications

Bioinformatics

The Ruzzo–Tompa algorithm has been used in Bioinformatics tools to study biological data. The problem of finding disjoint maximal subsequences is of practical importance in the analysis of DNA. Maximal subsequences algorithms have been used in the identification of transmembrane segments and the evaluation of sequence homology.[4]

The algorithm is used in sequence alignment which is used as a method of identifying similar DNA, RNA, or protein sequences.[7] Accounting for the ordering of pairs of high-scoring subsequences in two sequences creates better sequence alignments. This is because the biological model suggests that separate high-scoring subsequence pairs arise from insertions or deletions within a matching region. Requiring consistent ordering of high-scoring subsequence pairs increases their statistical significance.[4]

Web scraping

The Ruzzo–Tompa algorithm is used in Web scraping to extract information from web pages. Pasternack and Roth proposed a method for extracting important blocks of text from HTML documents. The web pages are first tokenized and the score for each token is found using local, token-level classifiers.[8] A modified version of the Ruzzo–Tompa algorithm is then used to find the k highest-valued subsequences of tokens. These subsequences are then used as predictions of important blocks of text in the article.[5]

Information retrieval

The Ruzzo–Tompa algorithm has been used in Information retrieval search algorithms. Liang et al. proposed a data fusion method to combine the search results of several microblog search algorithms. In their method, the Ruzzo–Tompa algorithm is used to detect bursts of information.[6]

Problem definition

The problem of finding all maximal subsequences is defined as follows: Given a list of real numbered scores x 1 , x 2 , , x n {\displaystyle x_{1},x_{2},\ldots ,x_{n}} , find the list of contiguous subsequences that gives the greatest total score, where the score of each subsequence S i , j = i k j x k {\displaystyle S_{i,j}=\sum _{i\leq k\leq j}x_{k}} . The subsequences must be disjoint (non-overlapping) and have a positive score.[9]

Other algorithms

There are several approaches to solving the all maximal scoring subsequences problem. A natural approach is to use existing, linear time algorithms to find the maximum subsequence (see maximum subarray problem) and then recursively find the maximal subsequences to the left and right of the maximum subsequence. The analysis of this algorithm is similar to that of Quicksort: The maximum subsequence could be small in comparison to the rest of sequence, leading to a running time of O ( n 2 ) {\displaystyle O(n^{2})} in the worst case.

Algorithm

This animation shows the Ruzzo–Tompa algorithm running with an input sequence of 11 integers each represented by a line segment in the graph. Segments with bold lines represent maximal segments found so far. The animation shows the state of I , R {\displaystyle I,R} and L {\displaystyle L} at each step. Below that it shows the current state the algorithm which correspond to steps 1–4 in the Algorithm section of this page. The red highlight shows the algorithm finding a value for j {\displaystyle j} in steps 1 and 3. If the value of j {\displaystyle j} satisfies the inequalities in those steps the highlight turns green. At the end of the animation, the maximal subsequences will be bolded and displayed in I {\displaystyle I} .[1]

The standard implementation of the Ruzzo–Tompa algorithm runs in O ( n ) {\displaystyle O(n)} time and uses O(n) space, where n is the length of the list of scores. The algorithm uses dynamic programming to progressively build the final solution by incrementally solving progressively larger subsets of the problem. The description of the algorithm provided by Ruzzo and Tompa is as follows:

Read the scores left to right and maintain the cumulative sum of the scores read. Maintain an ordered list I 1 , I 2 , , I j {\displaystyle I_{1},I_{2},\ldots ,I_{j}} of disjoint subsequences. For each subsequence I j {\displaystyle I_{j}} , record the cumulative total L j {\displaystyle L_{j}} of all scores up to but not including the leftmost score of I j {\displaystyle I_{j}} , and the total R j {\displaystyle R_{j}} up to and including the rightmost score of I j {\displaystyle I_{j}} .
The lists are initially empty. Scores are read from left to right and are processed as follows. Nonpositive scores require no special processing, so the next score is read. A positive score is incorporated into a new sub-sequence I k {\displaystyle I_{k}} of length one that is then integrated into the list by the following process:
  1. The list I {\displaystyle I} is searched from right to left for the maximum value of j {\displaystyle j} satisfying L j < L k {\displaystyle L_{j}<L_{k}}
  2. If there is no such j {\displaystyle j} , then add I k {\displaystyle I_{k}} to the end of the list.
  3. If there is such a j {\displaystyle j} , and R j R k {\displaystyle R_{j}\geq R_{k}} , then add I k {\displaystyle I_{k}} to the end of the list.
  4. Otherwise (i.e., there is such a j, but R j < R k {\displaystyle R_{j}<R_{k}} ), extend the subsequence I k {\displaystyle I_{k}} to the left to encompass everything up to and including the leftmost score in I j {\displaystyle I_{j}} . Delete subsequences I j , I j + 1 , , I k 1 {\displaystyle I_{j},I_{j}+1,\ldots ,I_{k}-1} from the list, and append I k {\displaystyle I_{k}} to the end of the list. Reconsider the newly extended subsequence I k {\displaystyle I_{k}} (now renumbered I j {\displaystyle I_{j}} ) as in step 1.
Once the end of the input is reached, all subsequences remaining on the list I {\displaystyle I} are maximal.[2]

The following Python code implements the Ruzzo–Tompa algorithm:

def ruzzo_tompa(scores):
	"""Ruzzo–Tompa algorithm."""
	k = 0
	total = 0
	# Allocating arrays of size n
	I, L, R, Lidx = [[0] * len(scores) for _ in range(4)]
	for i, s in enumerate(scores):
    	total += s
    	if s > 0:
        	# store I[k] by (start,end) indices of scores
        	I[k] = (i, i + 1)
        	Lidx[k] = i
        	L[k] = total - s
        	R[k] = total
        	while True:
            	maxj = None
            	for j in range(k - 1, -1, -1):
                	if L[j] < L[k]:
                    	maxj = j
                    	break
            	if maxj is not None and R[maxj] < R[k]:
                	I[maxj] = (Lidx[maxj], i + 1)
                	R[maxj] = total
                	k = maxj
            	else:
                	k += 1
                	break
	# Getting maximal subsequences using stored indices
	return [scores[I[l][0] : I[l][1]] for l in range(k)]

See also

References

  1. ^ a b c Spouge, John L.; Ramírez, Leonardo Mariño; Sheetlin, Sergey L. (2014). "Searching for repeats, as an example of using the generalised Ruzzo-Tompa algorithm to find optimal subsequences with gaps". International Journal of Bioinformatics Research and Applications. 10 (4/5): 384–408. doi:10.1504/IJBRA.2014.062991. ISSN 1744-5485. PMC 4135518. PMID 24989859.
  2. ^ a b Ruzzo, Walter L.; Martin, Tompa (1999). "A Linear Time Algorithm for Finding All Maximal Scoring Subsequences". Proceedings. International Conference on Intelligent Systems for Molecular Biology: 234–241. ISBN 9781577350835. PMID 10786306.
  3. ^ "A Linear Time Algorithm for Finding All Maximal Scoring Subsequences" (PDF).
  4. ^ a b c Karlin, S; Altschul, SF (Jun 15, 1993). "Applications and statistics for multiple high-scoring segments in molecular sequences". Proceedings of the National Academy of Sciences of the United States of America. 90 (12): 5873–5877. Bibcode:1993PNAS...90.5873K. doi:10.1073/pnas.90.12.5873. PMC 46825. PMID 8390686.
  5. ^ a b Pasternack, Jeff; Roth, Dan (2009). "Extracting article text from the web with maximum subsequence segmentation". Proceedings of the 18th international conference on World wide web. pp. 971–980. doi:10.1145/1526709.1526840. ISBN 9781605584874. S2CID 346124.
  6. ^ a b Liang, Shangsong; Ren, Zhaochun; Weerkamp, Wouter; Meij, Edgar; de Rijke, Maarten (2014). "Time-Aware Rank Aggregation for Microblog Search". Proceedings of the 23rd ACM International Conference on Conference on Information and Knowledge Management. pp. 989–998. CiteSeerX 10.1.1.681.6828. doi:10.1145/2661829.2661905. ISBN 9781450325981. S2CID 14287901.
  7. ^ Spouge, John L.; Mariño-Ramírez, Leonardo; Sheetlin, Sergey L. (2012). "The ruzzo-tompa algorithm can find the maximal paths in weighted, directed graphs on a one-dimensional lattice". 2012 IEEE 2nd International Conference on Computational Advances in Bio and medical Sciences (ICCABS). pp. 1–6. doi:10.1109/ICCABS.2012.6182645. ISBN 978-1-4673-1321-6. S2CID 14584619.
  8. ^ "Web Scraping: Everything You Need To Know". Datamam. 2021-07-30. Retrieved 2023-02-16.
  9. ^ Spouge, John L.; Mariño-Ramírez, Leonardo; Sheetlin, Sergey L. (2012). "The ruzzo-tompa algorithm can find the maximal paths in weighted, directed graphs on a one-dimensional lattice". 2012 IEEE 2nd International Conference on Computational Advances in Bio and medical Sciences (ICCABS). pp. 1–6. doi:10.1109/ICCABS.2012.6182645. ISBN 978-1-4673-1321-6. S2CID 14584619.

Further reading

  • Ali, Syed Arslan; Raza, Basit; Malik, Ahmad Kamran; Shahid, Ahmad Raza; Faheem, Muhammad; Alquhayz, Hani; Kumar, Yogan Jaya (2020). "An Optimally Configured and Improved Deep Belief Network (OCI-DBN) Approach for Heart Disease Prediction Based on Ruzzo–Tompa and Stacked Genetic Algorithm". IEEE Access. 8. Institute of Electrical and Electronics Engineers (IEEE): 65947–65958. doi:10.1109/access.2020.2985646. ISSN 2169-3536. S2CID 215817246.