ResearchFinding the region of pseudo-periodic tandem repeats in biological sequencesDepartment of Computer Science, City University of Hong Kong, Kowloon, Hong Kong
Algorithms for Molecular Biology 2006, 1:2doi:10.1186/1748-7188-1-2 The electronic version of this article is the complete one and can be found online at: http://www.almob.org/content/1/1/2
©
2006 Liu and Wang; licensee BioMed Central Ltd. AbstractSummaryThe genomes of many species are dominated by short sequences repeated consecutively. It is estimated that over 10% of the human genome consists of tandemly repeated sequences. Finding repeated regions in long sequences is important in sequence analysis. We develop a software, LocRepeat, that finds regions of pseudo-periodic repeats in a long sequence. We use the definition of Li et al. [1] for the pseudo-periodic partition of a region and extend the algorithm that can select the repeated region from a given long sequence and give the pseudo-periodic partition of the region. AvailabilityLocRepeat is available at http://www.cs.cityu.edu.hk/~lwang/software/LocRepeat webcite BackgroundFinding pseudo-periodic repeats (or tandem repeats) is an important task in biological sequence analysis [1-3]. The genomes of many species are dominated by short sequences repeated consecutively. It is estimated that over 10% of the human genome consists of tandemly repeated sequences. About 10–25% of all known proteins have some form of repeated structure ranging from simple homopolymers to multiple duplications of entire globular domains. An instance (originally from Jaitly et al. [2]) of a human tandem repeat appears below (Genbank:10120313): CCTCCTCCTCCACCTCCTCCTCCTCCTCCTCCTCCTCCGCCTTCTCATCCTCCTCCACTT CCTCCTCCTCCTCCTCCTCCCCTTCTCATCCTCCTCCTCTTCATCTACCC This tandem repeat consists of 35 approximate copies of the repeated pattern CCT. Variation in the pseudo-periodic repeats demonstrates biologically important information. Sensitive tools for finding those regions containing pseudo-periodic repeats are required in practice. Repeats occur frequently in biological sequences, but they may not be exact in many cases. If the repeats are exact, the problem can be easily solved from computation point of view. However, repeats are seldom exact in biological sequences. The errors in those repeats make it difficult to find regions of those repeats. Many measures and algorithms have been proposed. Landau and Schmidt [4] studied the problem of finding the two consecutive copies in a sequence of length n such that the edit distance (a match costs 0 and a mismatch/indel costs 1) between the two copies is at most k. The running time of the algorithm is O(kn log k log(n/kL)). Schmidt [5] used weighted grid digraphs for finding all non-overlapping pairs of substrings (not necessarily consecutive) with the highest scores in a given string of length n. The algorithm can handle any score scheme. It requires O(n2 log n) time and Θ(n2) space. In both [4] and [5], only two copies of the pattern are considered. Measures for finding repeatsThree measures can be used to give partitions of repeated regions. QuasiperiodictyWan and Song proposed a measure in which all the repeated copies (except the last one) have the same length [6]. For this measure, a linear time and space algorithm was given [6]. Approximate periodsSim et al. [7] introduced a notion of approximation periods (approximate period) using edit distance or relative edit distance. The problem in general is defined as follows: given a string x, find a repeated pattern p such that x can be partitioned as x = p1p2...pk and Table 1. Pseudo periodic repeats of 1SRY (matrix:blosum62, gap penalty: -4) Pseudo-periodic repeatsLi et al. [1] gave the first measure that allows gradual changes of patterns and changes of pattern lengths in the region. The repeats they defined are called the pseudo-periodic repeats. Given a repeated region (a string) x and a partition X = s1s2...sk, the pseudo periodic score is
where d(·) is the edit distance, |si| is the length of si, and c is a factor that control the penalty of the two ends of the partition. Li et al. [1] gave a O(|x|2) algorithm to compute an optimal partition of a given repeated region x. It was shown that the pseudo-periodic score can accurately give partitions for tandem repeated regions, where the repeated patterns are weakly similar. Example: The example is from [1]. The sequence of the LbH domain of members of the LpxA family consists of the imperfect tandem repetition of hexapeptide units [9-11]. These imperfect tandem repeats (partitions) have been accurately detected by the algorithm using the pseudo periodic score [1]. (See Table 2). Table 2. Pseudo periodic repeats of LPXA_ECOLI (matrix:blosum62, gap penalty: -4) In sequence analysis, we may have a long sequence s and only a substring t (or a few substrings) of s contains the consecutive repeats. The problem here is to find out the substring t and give an optimal pseudo-periodic partition. We call this problem the local pseudo-periodic problem. In this paper, we define the maximization version of the pseudo-periodic partition and develop an algorithm that solves the local pseudo-periodic problem in O(n2) time, where n is the length of the input sequence s. DefinitionsIn this section, we first give a definition of the pseudo-periodic partition of a string that is originally proposed in Li et al. [1]. We then give a definition of the local pseudo-periodic partition of a string. Pseudo-periodic PartitionLet s = a1a2...an be a string of length n. A partition π(s) = {s1, s2, ..., sk} of s is a set of substrings of s such that s = s1s2...sk (si's are also called repeats). When s is clear, we use π instead of π(s). Π(s) denotes the set of all partitions of s. Let si and si+1 be two strings. The similarity measure μ(si, si+1) between si and si+1 is the maximum alignment value for si and si+1. For any two letters (possibly spaces) x and y, μ(x, y) is the similarity score between the two letters. For example, one can use the following score scheme I: a match costs 1, a mismatch costs -1, and an insertion or deletion costs -1. Here we choose to use maximization version since for protein sequences, there are popular similarity matrices, e.g., PAM matrix. Let c be a negative constant. We call Let us consider the following example. sA = s1s2s3s4s5 and π(sA) = {s1, s2, s3, s4, s5}, where s1 = aaa, s2 = aat, s3 = att, s4 = ttt and s5 = tta. The self-alignment of this partition is show in Figure 1. The value of the self-alignment is
Note that the score for insertion and deletion would be different from the granularity factor Let s = s1s2...sk be the string and π(s) = {s1, s2, ..., sk}. |s| denotes the length of the string. pre(s, i) is the length-i prefix of s and suf(s, i) is the length-i suffix of s. Note that the gap at the right end of the self-alignment of s only appears in the segments sk-1 and sk. Denote by se the suffix sk-1sk of s. We can designate that only the last i letters in se are mapped to spaces with score For a partition π of s and a fixed i, 1 ≤ i ≤ |se|, let V(π, c, i) be the value of the self-alignment such that s1 is mapped to spaces with score
In V(π, c, i), the alignment between s1s2...sk-2pre(se, |se| - i) and s2s3...sk is called the middle alignment. The value of the self-alignment of π is defined as For example, let sB = s1s2s3 and π(sB) = {s1, s2, s3}, where s1 = aaaa, s2 = aaat and s3 = aaa. We use score scheme I and c = -1. The valid value of i is 1, 2, ..., 7 since |s2s3| = 7. For i = 5 ≥ |s3|, pre(s2, 2) is optimally aligned with s3, s1 and suf(s2s3, 5) is scored as
Let Π(s) be the set of all possible partitions of s. Bc(s) = maxπ∈Π(s) V(π, c) is the optimal V(·) value of partitions. A partition πq = {s1, s2, ..., sk} of s is called the pseudo-periodic partition of s if Bc(s) = V(πq, c). In Li et al. [1], it was demonstrated that the numerical measure Bc(s) (in fact, the minimization version) is sensitive for partitioning s into repeats that allow the gradual changes of patterns and changes of pattern lengths. In practice, we are given a long string s. We want to find a region (substring) t of s that contains pseudo-periodic repeats. Once the region t is found, we want to get the pseudo-periodic partition of t. The mathematical problem is defined as follows: Local pseudo-periodic partition problemGiven a string s, find a substring t (the local optimal pseudo-periodic region) of s such that
where Sub(s) is the subset of all substrings of s. The algorithmLet s be the given string. We want to find a substring t of s with the maximum self-alignment value . Let s[1, j] be the substring of s that consists of the first j letters. Informally, we use w(i, j) to denote the maximum self-alignment value of a suffix tj of s[1, j] such that there are i letters at the right end of the self-alignment of tj that are aligned with spaces and scored as Let Tj be the set of all suffixes of s[1, j]. For a substring t of s and an integer i, Π(t, i) = {π(t)|π(t) ∈ Π(t) and |tk-1tk| ≥ i}, where tk-1, tk are the last two repeats in π(t). We define
to be the maximum V(·, c, i) value of all the partitions in Π(t, i), where t is a substring in Tj. To compute w(i, j) using dynamic programming method, we first consider the boundary values of w(i, j). We set w(0, j) = -∞ since we do not allow suf(tk-1tk, i) to be empty. Note that, by definition, i ≤ j. Lemma 1 For a sequence s of length n, w(j, j) = c·j for 1 ≤ j ≤ n. Proof. For a partition π(t) = {t1, t2, ..., tk} satisfying t ∈ Tj and π(t) ∈ Π(t, j), from the definition of Π(t, j), |tk-1tk| ≥ j. Since t is a suffix of s[1, j] and |t| ≥ |tk-1tk| ≥ j, we have t = s[1, j] and 1 ≤ k ≤ 2. Consider the self alignment of π(t) such that the last j letters in t are mapped to spaces with score From the above analysis, the initial and boundary values are w(0, j) = -∞, w(j, j) = c·j (2) Theorem 2 For a sequence s of length n and 2 ≤ j ≤ n, 1 ≤ i <j,
Proof. Consider the partition π(t) = {t1, t2, ..., tk} such that t ∈ Tj, π(t) ∈ Π(t, i) and V(π(t), c, i) = w(i, j). We analyze the value of V(π(t), c, i) based on different cases. case 1. π(t) has only one repeat. We have |t| = |t1| = i and the middle alignment is empty. Therefore V(π(t), c, i) = case 2. π(t) has k ≥ 2 repeats. In this case, the middle alignment is not empty since it contains tk. The last column in the middle alignment has three configurations: (a) the last column contains two letters s[j - i] and s[j], (b) the last column contains a space and the letter s[j], (c) the last column contains the letter s[j - i] and a space. For sub-case (a), if we take away the last letter s[j] from the self alignment of π(t), we can get a self alignment of π'(t'), where t' ∈ Tj-1, π'(t') ∈ Π(t', i) and V(π'(t'), c, i) = w(i, j - 1). By comparing the two self alignment, we have V(π(t , c, i = V(π'(t'), c, i) + μ(s[j - i], s[j]) = w(i, j - 1) + μ(s[j - i], s[j]). For sub-case (b), if we take away the last letter s[j] and space aligned with s[j] from the self alignment of π(t), we can get a self alignment of π'(t'), where t' ∈ Tj-1, π'(t') ∈ Π(t', i - 1) and V(π'(t'), c, i) = w(i - 1, j - 1). Notice that in the end of the self alignment of π'(t'), there are only i - 1 letters mapped to spaces with score Based on Theorem 2, a dynamic programming algorithm is designed. Let n be the length of the input sequence s. We compute w(i, j) in the order shown below: for j = 1 to n do for i = j downto 1 do compute w(i, j) based on Theorem 2. Obviously, the time complexity is O(n2), where n is the length of the whole string. A standard backtracking process allows us to find the local optimal pseudo-periodic region t. The following example illustrates the algorithm. Let s = CAGAGT. We set c = -2 and use the following score scheme: a match costs 10, a mismatch costs -10, and an insertion or a deletion costs -10. The table constructed by using the dynamic programming algorithm is shown in Figure 3. The table is constructed in from the top to the bottom. For every row in the table, the w(i, j)'s are computed from left to right. From the table, it is easy to see that the maximum value of w(i, j) is w(2, 5) = 16. From the maximum value w(2, 5) = 16, we know that the local optimal pseudo-periodic region t is a suffix of s[1, 5] = CAGAG and there are 2 letters aligned with spaces and scored as
The space complexity required is also O(n2) if we are not careful. However, we can release the space whenever they are no longer useful. Thus, only two columns, are required for the computation. For each of the two columns, we use two arrays: one array stores the value of w(i, j) and the other array stores the starting position of the subsequence t that maximizes w(i, j). Therefore, the space complexity is O(n) for computing all w(i, j)'s. After w(i, j)'s are computed, we know the substring t that leads to the optimal w value. Therefore, we can reconstruct the alignment for t in In practice, a sequence may contain more than one repeated region. To find all the repeated regions, we can select the best k values of w(i, j)'s for some pre-defined value k. Each backtracking gives a repeated region. Another way to set a threshold for the value of w(i, j) and select all w(i, j)'s with value greater than the threshold. ImplementationWe have implemented the algorithm using Visual C++ 6.0 and Windows XP. The software is called LocRepeat and has a user-friendly GUI (See Figure 4). Another version without GUI that works for Linux is also available.
LocRepeat accepts three kinds of sequence: DNA, RNA and Protein. The user can either click 'New Data' button to directly input the sequence at the input area, or click 'Input Data from File' button to input a sequence from a file. The user can click 'Set Parameters' button to set parameters, such as granularity factor, gap penalty and similarity score matrix. After the sequence is input and the parameters are set, click the 'Start' button to begin the computation. Experiment resultsWe have done experiments to test the speed and sensitivity of the software. Speed TestingThe time complexity of the algorithm is O(n2). To test the speed in practice, we use arbitrarily generated DNA and protein sequences. We ran our software on a PC with Pentium 4 3.4G CPU and 1GB memory, the result is shown in Table 3. We can see that for long DNA and protein sequences, our software can get the result in short time. For example, if the length of the sequence is 10000, it takes about 10.8 seconds and 26.9 seconds for DNA sequences and protein sequences, respectively. In some real applications, the length of sequences could be much longer than 10000. In this case, one can cut the long sequence into several short pieces and find out the repeated regions for each piece. If a region covers two pieces, then we can re-cut that segment to get that region. Table 3. Results for the speed test of LocRepeat Sensitivity testing using real dataWe applied LocRepeat to the DNA sequence gene PRNP which contains tandem repeats (GenBank:M13667). The length of the sequence is 2420. We find the local optimal pseudo-periodic region [215,327], that contains 5 pseudo-periodic units (Table 4). The pseudo-periodic region misses the first several sites of the tandem repeats, but the region and the partitions show the tandem repeats correctly. We also applied LocRepeat to the protein sequence LGR6 (Swiss-Prot: Q9HBX8). The length of the sequence is 828. We use PAM120 as the similarity score matrix and find the local units (Table 5). Table 4. Local optimal pseudo-periodic region for PRNP Table 5. Local optimal pseudo-periodic region for LGR6 In conclusion, the algorithm presented in this paper offers the possibility to find regions of pseudo-periodic repeats in a long sequence. AcknowledgementsWe thank the referees for their helpful suggestions. This work is fully supported by a grant from the Research Grants Council of the Hong Kong Special Administrative Region, China [Project No. CityU 1070/02E]. References
Have something to say? Post a comment on this article! |





on Google Scholar








author email
corresponding author email
is minimized. Here d(p, pl) is the relative edit distance which is
the edit distance, where L = (|p| + |pl|)/2 is the average length of the two strings p and pl. Note that, the normalization of the edit distance is important for finding repeated patterns since otherwise, one can give a partition in which each pattern has one letter and the edit distance is at most 1 (small). The problem in general is NP-hard 
the granularity factor. Let
, where
Figure 1.
.
. For i = 2 < |s3|, s2 is optimally aligned with s3, pre(s3, 1) is scored as
Figure 2.


Figure 3.
time and space, where n1 is the length of t, the repeated region. If n1 is still big, we can use the standard technique in
Figure 4.