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

Linear-time computation of minimal absent words using suffix array

Abstract

Background

An absent word of a word y of length n is a word that does not occur in y. It is a minimal absent word if all its proper factors occur in y. Minimal absent words have been computed in genomes of organisms from all domains of life; their computation also provides a fast alternative for measuring approximation in sequence comparison. There exists an O(n)-time and O(n)-space algorithm for computing all minimal absent words on a fixed-sized alphabet based on the construction of suffix automata (Crochemore et al., 1998). No implementation of this algorithm is publicly available. There also exists an O( n 2 )-time and O(n)-space algorithm for the same problem based on the construction of suffix arrays (Pinho et al., 2009). An implementation of this algorithm was also provided by the authors and is currently the fastest available.

Results

Our contribution in this article is twofold: first, we bridge this unpleasant gap by presenting an O(n)-time and O(n)-space algorithm for computing all minimal absent words based on the construction of suffix arrays; and second, we provide the respective implementation of this algorithm. Experimental results, using real and synthetic data, show that this implementation outperforms the one by Pinho et al. The open-source code of our implementation is freely available at http://github.com/solonas13/maw.

Conclusions

Classical notions for sequence comparison are increasingly being replaced by other similarity measures that refer to the composition of sequences in terms of their constituent patterns. One such measure is the minimal absent words. In this article, we present a new linear-time and linear-space algorithm for the computation of minimal absent words based on the suffix array.

Background

Sequence comparison is an important step in many important tasks in bioinformatics. It is used in many applications; from phylogenies reconstruction to the reconstruction of genomes. Traditional techniques for measuring approximation in sequence comparison are based on the notions of distance or of similarity between sequences; and these are computed through sequence alignment techniques. An issue with using alignment techniques is that they are computationally expensive: they require quadratic time in the length of the sequences. Moreover, in molecular taxonomy and phylogeny, for instance, whole-genome alignment proves both computationally expensive and hardly significant. These observations have led to increased research into alignment free techniques for sequence comparison. A number of alignment free techniques have been proposed: in [1], a method based on the computation of the shortest unique factors of each sequence is proposed; other approaches estimate the number of mismatches per site based on the length of exact matches between pairs of sequences [2].

Thus standard notions are gradually being complemented (or even supplanted) by other measures that refer, implicitly or explicitly, to the composition of sequences in terms of their constituent patterns. One such measure is the notion of words absent in a sequence. A word is an absent word of some sequence if it does not occur in the sequence. These words represent a type of negative information: information about what does not occur in the sequence. Noting the words which do occur in one sequence but do not occur in another can be used to detect mutations or other biologically significant events.

Given a sequence of length n, the number of absent words of length at most n can be exponential in n, meaning that using all the absent words for sequence comparison is more expensive than alignments. However, the number of certain subsets of absent words is only linear in n. An absent word of a sequence is a shortest absent word if all words shorter than it do occur in the sequence. An O(mn)-time algorithm for computing shortest absent words was presented in [3], where m is a user-specified threshold on the length of the shortest absent words. This was later improved by [4], who presented an O(nloglogn)-time algorithm for the same problem. This has been further improved and an O(n)-time algorithm was presented in [5].

A minimal absent word of a sequence is an absent word whose proper factors all occur in the sequence. Notice that minimal absent words are a superset of shortest absent words [6]. An upper bound on the number of minimal absent words is O(σn) [7],[8], where σ is the size of the alphabet. This suggests that it may be possible to compare sequences in time proportional to their lengths, for a fixed-sized alphabet, instead of proportional to the product of their lengths [1]. Theory and some applications of minimal absent words can be found in [9].

Recently, there has been a number of biological studies on the significance of absent words. The most comprehensive study on the significance of absent words is probably [10]; in this, the authors suggest that the deficit of certain subsets of absent words in vertebrates may be explained by the hypermutability of the genome. It was later found in [11] that the compositional biases observed in [10] for vertebrates are not uniform throughout different sets of minimal absent words. Moreover, the analyses in [11] support the hypothesis of the inheritance of minimal absent words through a common ancestor, in addition to lineage-specific inheritance, only in vertebrates. In [12], the minimal absent words in four human genomes were computed, and it was shown that, as expected, intra-species variations in minimal absent words were lower than inter-species variations. Minimal absent words have also been used for phylogenies reconstruction [13].

From an algorithmic perspective, an O(n)-time and O(n)-space algorithm for computing all minimal absent words on a fixed-sized alphabet based on the construction of suffix automata was presented in [7]. An alternative O(n)-time solution for finding minimal absent words of length at most , such that =O(1), based on the construction of tries of bounded-length factors was presented in [13]. A drawback of these approaches, in practical terms, is that the construction of suffix automata (or of tries) may have a large memory footprint. Due to this, an important problem is to be able to compute the minimal absent words of a sequence without the use of data structures such as the suffix automaton. To this end, the computation of minimal absent words based on the construction of suffix arrays was considered in [6]; although fast in practice, the worst-case runtime of this algorithm is O( n 2 ). Alternatively, one could make use of the succinct representations of the bidirectional BWT, recently presented in [14], to compute all minimal absent words in time O(n). However, an implementation of these representations was not made available by the authors; and it is also rather unlikely that such an implementation will outperform an O(n)-time algorithm based on the construction of suffix arrays.

Our contribution

In this article, we bridge this unpleasant gap by presenting the first O(n)-time and O(n)-space algorithm for computing all minimal absent words of a sequence of length n based on the construction of suffix arrays. In addition, we provide the respective implementation of this algorithm. This implementation is shown to be more efficient than existing tools, both in terms of speed and memory.

Methods

Definitions and notation

To provide an overview of our result and algorithm, we begin with a few definitions. Let y=y[ 0]y[ 1]..y[ n−1] be a word of length n=|y| over a finite ordered alphabet Σ of size σ=|Σ|=O(1). We denote by y[ i..j]=y[ i]..y[ j] the factor of y that starts at position i and ends at position j and by ε the empty word, word of length 0. We recall that a prefix of y is a factor that starts at position 0 (y[ 0..j]) and a suffix is a factor that ends at position n−1 (y[ i..n−1]), and that a factor of y is a proper factor if it is not the empty word or y itself.

Let x be a word of length 0<mn. We say that there exists an occurrence of x in y, or, more simply, that x occurs in y, when x is a factor of y. Every occurrence of x can be characterised by a starting position in y. Thus we say that x occurs at the starting position i in y when x=y[ i..i+m−1]. Opposingly, we say that the word x is an absent word of y if it does not occur in y. The absent word x, m≥2, of y is minimal if and only if all its proper factors occur in y.

We denote by SA the suffix array of y, that is the array of length n of the starting positions of all sorted suffixes of y, i.e. for all 1≤r<n, we have y[ SA[ r−1]..n−1]<y[SA[ r]..n−1] [15]. Let lcp (r,s) denote the length of the longest common prefix of the words y[SA[ r]..n−1] and y[SA[ s]..n−1], for all 0≤r,s<n, and 0 otherwise. We denote by LCP the longest common prefix array of y defined by LCP [ r]=lcp(r−1,r), for all 1≤r<n, and LCP [ 0]=0. The inverse iSA of the array SA is defined by iSA[ SA[ r]]=r, for all 0≤r<n. SA [16], iSA, and LCP [17] of y can be computed in time and space O(n).

In this article, we consider the following problem:

MINIMALABSENTWORDS Input: a word y on Σ of length n Output: for every minimal absent word x of y, one tuple <a,(i,j)>, such that x is defined by x[ 0]=a, aΣ, and x[ 1..m−1]=y[ i..j], m≥2.

Algorithm MAW

In this section, we present algorithm MAW, an O(n)-time and O(n)-space algorithm for finding all minimal absent words in a word of length n using arrays SA and LCP.

We first give an example and explain how we can characterise the minimal absent words; then we introduce how their computation can be done efficiently by using arrays SA and LCP. Finally, we present in detail the two main steps of the algorithm.

Intuitively, the idea is to look at the occurrences of a factor w of y and, in particular, at the letters that precede and follow these occurrences. If we find a couple (a,b), a,bΣ, such that aw and wb occur in y, but awb does not occur in y, then we can conclude that awb is a minimal absent word of y. For an illustration inspect Figure 1.

Figure 1
figure 1

k occurrences of a factor w of y ; they are preceded by a i and followed by b i . If there exist i,j[ 1:k] such that (a i ,b j ){(a1,b1),…,(a k ,b k )} then a i w b j is a minimal absent word of y.

For example, let us consider the word y=AABABABB:

factor w=AB occurs at:

position 1 preceded by A A and followed by A A

position 3 preceded by B B and followed by A A

position 5 preceded by B B and followed by B B

We see that A A w occurs and w B B occurs as well but A A w B B does not occur in y, so AABB AABB is a minimal absent word of y.

factor w=BA occurs at:

position 2 preceded by A A and followed by B B

position 4 preceded by A A and followed by B B

We cannot infer a minimal absent word.

A minimal absent word x[ 0..m−1] of a word y[ 0..n−1] is an absent word whose proper factors all occur in y. Among them, x 1=x[ 1..m−1] and x 2=x[ 1..m−2]=x 1[ 0..|x 1|−2] occur in y (inspect Figure 2); we will focus on these two factors to characterise the minimal absent words. To do so, we will consider each occurrence of x 1 and x 2, and construct the sets of letters that occur just before:

Figure 2
figure 2

A word x and its factors x 1 = x [ 1 . . m −1] and x 2 = x 1 [0 . . | x 1 |−2].

B1(x 1) = {y[j−1]:j is the starting position of an occurrence of x 1}

B2(x 1) = {y[j−1]:j is the starting position of an occurrence of x 1[0..|x 1|−2]}.

Lemma 1

Let x and y be two words. Then x is a minimal absent word of y if and only if x[ 0] is an element of B2(x 1) and not of B1(x 1), with x 1=x[ 1.. m−1].

Proof

() Let x 1 be a factor of y, x 2 be the longest proper prefix of x 1, and B 1(x 1) and B2(x 1) the sets defined above. Further let p be a letter that is in B2(x 1) but not in B1(x 1). Then, there exists a starting position j of an occurrence of x 2 such that y[ j−1]=p, so the word p x 2 occurs at position j−1 in y. p is not in B1(x 1) so p x 1 does not occur in x and is therefore an absent word of y. x 1 and p x 2 are factors of y, so all the proper factors of p x 1 occur in y, thus p x 1 is a minimal absent word of y.

() Let x[ 0..m−1] be a minimal absent word of y. Its longest proper prefix x[ 0..m−2]=x[ 0]x 1[ 0..|x 1|−2] occurs in y, so x[0] is in B2(x 1). Its longest proper suffix, x 1 occurs as well in y, but x=x[ 0]x 1 is an absent word of y so it does not occur in y and x[ 0] is not in B1(x 1).

Lemma 2.

Let x be a minimal absent word of length m of word y of length n. Then there exists an integer i[ 0:n−1] such that y[ SA[ i]..SA[ i]+LCP[ i]]=x 1 or y[ SA[ i]..SA[ i]+LCP[ i+1]]=x 1, where x 1=x[ 1..m−1].

Proof.

Let j be the starting position of an occurrence of x[ 0..m−2] in y and k the starting position of an occurrence of x 1 in y. The suffixes y[ j+1..n−1] and y[ k..n−1] share x 2=x[ 1..m−2] as a common prefix. As x is an absent word of y, this common prefix cannot be extended so x 2 is the longest common prefix of those suffixes. By using iSA, the inverse suffix array, we have lcp(iSA[ j+1],iSA[ k])=m−2. Let us also note s k =iSA[ k] and s j+1=iSA[j+1]. We then have two possibilities:

if s k >s j+1: for all s in [ s j+1+1:s k ], we have LCP[ s]≥m−2, with equality holding for at least one position. Let us define i= max{s[ s j+1+1:s k ]:LCP[ s]=m−2 }, the maximality of i implies that i=s k or lcp(i,s k )>m−2 and thus, in both cases y[SA[ i]..SA[ i]+LCP[ i]]=x 1.

if s j+1>s k : for all s in [ s k +1:s j+1], we have LCP[ s]≥m−2, with equality holding for at least one position. Let us define i= min{s[ s k :s j+1−1]:LCP[ s+1]=m−2 }, the minimality of i implies i=s k or lcp(s k ,i)>m−2 and thus, in both cases y[ SA[ i]..SA[ i]+LCP[ i+1]]=x 1.

For an illustration inspect Figure 3.

Figure 3
figure 3

Illustration of Lemma 2.

By Lemma 2, we can compute all minimal absent words of y by examining only the factors S 2i=y[ SA[ i]..SA[ i]+LCP[ i]] and S 2i+1=y[ SA[ i]..SA[ i]+LCP[ i+1]], for all i in [ 0:n−1]. We just need to construct the sets B1(S 2i), B2(S 2i) and B1(S 2i+1), B2(S 2i+1), where B1(S j ) (resp. B2(S j )) is the set of letters that immediately precede an occurrence of the factor S j (resp. the longest proper prefix of S j ), for all j in [ 0:2n−1]. Then, by Lemma 1, the difference between B2(S j ) and B1(S j ), for all j in [ 0:2n−1], gives us all the minimal absent words of y.

Thus the important computational step is to compute these sets of letters efficiently. To do so, we visit twice arrays SA and LCP using another array denoted by B1 (resp. B2) to store set B1(S j ) (resp. B2(S j )), for all j in [ 0:2n−1]. Both arrays B1 and B2 consist of 2n elements, where each element is a bit vector of length σ, the size of the alphabet, corresponding to one bit per alphabet letter. While iterating over arrays SA and LCP, we maintain another array denoted by Interval, such that, at the end of each iteration i, the th element of Interval stores the set of letters we have encountered before the prefix of length of y[ SA[ i]..n−1]. Array Interval consists of maxi [0:n−1]LCP[ i]+1 elements, where each element is a bit vector of length σ.

During the first pass, we visit arrays SA and LCP from top to bottom. For each i[ 0:n−1], we store in positions 2i and 2i+1 of B1 (resp. B2) the set of letters that immediately precede occurrences of S 2i and S 2i+1 (resp. their longest proper prefixes) whose starting positions appear before position i in SA. During the second pass, we go bottom up to complete the sets, which are already stored, with the letters preceding the occurrences whose starting positions appear after position i in SA. In order to be efficient, we will maintain a stack structure, denoted by LifoLCP, to store the LCP values of the factors that are prefixes of the one we are currently visiting.

Top-down pass

Each iteration of the top-down pass consists of two steps. In the first step, we visit LifoLCP from the top and for each LCP value read we set to zero the corresponding element of Interval; then we remove this value from the stack. We stop when we reach a value smaller or equal to LCP[ i]. We do this as the corresponding factors are not prefixes of y[ SA[ i]..n−1], nor will they be prefixes in the remaining suffixes. We push at most one value onto the stack LifoLCP per iteration, so, in total, there are n times we will set an element of Interval to zero. This step requires time and space O().

For the second step, we update the elements that correspond to factors in the suffix array with an LCP value less than LCP[ i]. To do so, we visit the stack LifoLCP top-down and, for each LCP value read, we add the letter y[SA[ i]−1] to the corresponding element of Interval until we reach a value whose element already contains it. This ensures that, for each value read, the corresponding element of Interval has no more than σ letters added. As we consider at most n values, this step requires time and space O(). For an example, see Figure 4.

Figure 4
figure 4

Top-down pass. (a) Arrays B1 and B2 obtained after the top-down pass for word y=AABABABB; (b) Elements of array Interval at the end of each iteration of the top-down pass.

Bottom-up pass

Intuitively, the idea behind the bottom-up pass is the same as in the top-down pass except that in this instance, as we start from the bottom, the suffix y[ SA[ i]..n−1] can share more than its prefix of length LCP[ i] with the previous suffixes in SA. Therefore we may need the elements of Interval that correspond to factors with an LCP value greater than LCP[ i] to correctly compute the arrays B1 and B2. To achieve this, we maintain another stack LifoRem to copy the values from LifoLCP that are greater than LCP[ i]. This extra stack allows us to keep in LifoLCP only values that are smaller or equal to LCP[ i] without losing the additional information we require to correctly compute B1 and B2. At the end of the iteration, we will set to zero each element corresponding to a value in LifoRem and empty the stack. Thus to set an element of Interval to zero requires two operations more than in the first pass. As we consider at most n values, this step requires time and space O().

Another difference between the top-down and bottom-up passes is that in order to retain the information computed in the first pass, the second step is performed for each letter in B1[ 2i]. As, for each LCP value read, we still add a letter only if is not already contained in the corresponding element of Interval, no more than σ letters are added. Thus this step requires time and space O(). For an example, see Figure 5.

Figure 5
figure 5

Bottom-up pass. (a) Arrays B1 and B2 obtained after the bottom-up pass for word y=AABABABB; (b) Elements of array Interval at the end of each iteration of the bottom-up pass.

Once we have computed arrays B1 and B2, we need to compare each element. If there is a difference, by Lemma 1, we can construct a minimal absent word. For an example, see Figure 6. To ensure that we can report the minimal absent words in linear time, we must be able to report each one in constant time. To achieve this, we can represent them as a tuple <a,(i,j)>, where for some word x of length m≥2 that is a minimal absent word of y, the following holds: x[ 0]=a and x[ 1.. m−1]=y[ i.. j]. Note that this representation uniquely identifies a minimal absent word and conversion from this encoding to the actual minimal absent word is trivial. Lemma 2 ensures us to be exhaustive. Therefore we obtain the following result.

Figure 6
figure 6

Minimal absent words of word y =AABABABB; we find seven minimal absent words {AAA, AABABB, AABB, BAA, BABABA,BBA, BBB}.

Theorem 1

Algorithm MAW solves problem MINIMALABSENTWORDS in time and space O(n).

Results and discussion

The experiments were conducted on a Desktop PC using one core of Intel Xeon E5540 CPU at 2.5 GHz and 32GB of main memory under 64-bit GNU/Linux. All programs were compiled with gcc gcc version 4.6.3 at optimisation level 3 (-O3). Time and memory measurements were taken using the GNU/Linux time time command.

Implementation

We implemented algorithm MAW as a program to compute all minimal absent words of a given sequence. The program was implemented in the C programming language and developed under GNU/Linux operating system. It takes as input arguments a file in (Multi)FASTA format and the minimal and maximal length of minimal absent words to be outputted; and then produces a file with all minimal absent words of length within this range as output. The implementation is distributed under the GNU General Public License (GPL), and it is available at http://github.com/solonas13/maw, which is set up for maintaining the source code and the man-page documentation.

Datasets

We considered the genomes of thirteen bacteria and four case-study eukaryotes (Table 1), all obtained from the NCBI database (ftp://ftp.ncbi.nih.gov/genomes/).

Table 1 Species selected for this work with reference to the respective abbreviation and identification of genome sequence data by accession number for bacteria or genome assembly project for eukaryotes

Correctness

To test the correctness of our implementation, we compared it against the implementation of Pinho et al. [6], which we denote here by PFG. In particular, we counted the number of minimal absent words, for lengths 11, 14, 17, and 24, in the genomes of the thirteen bacteria listed in Table 1. We considered only the 5→3 DNA strand. Table 2 depicts the number of minimal absent words in these sequences. We denote by M11, M14, M17, and M24 the size of the resulting sets of minimal absent words for lengths 11, 14, 17, and 24 respectively. Identical number of minimal absent words for these lengths were also reported by PFG, suggesting that our implementation is correct.

Table 2 Number of minimal absent words of lengths 11, 14, 17, and 24 in the genomes of thirteen bacteria

Efficiency

To evaluate the efficiency of our implementation, we compared it against the corresponding performance of PFG, which is currently the fastest available implementation for computing minimal absent words. Notice that this evaluation depends heavily on the suffix array construction implementation used; and that PFG uses a less optimised implementation for this construction than the one used by MAW. We computed all minimal absent words for each chromosome sequence of the genomes of the four eukaryotes listed in Table 1. We considered both the 5→3 and the 3→5 DNA strands. Tables 3 and 4 depict elapsed-time comparisons of MAW and PFG. We observe that PFG scales mostly linearly. MAW also scales linearly and is the fastest in all cases. It accelerates the computations by more than a factor of 2, when the sequence length grows, compared to PFG. Figure 7 corresponds to the measurements in Table 4: it plots chromosome sequence length versus elapsed time for computing all minimal absent words in the genomes of Homo Sapiens and Mus musculus using MAW and PFG. MAW also reduces the memory requirements by a factor of 5 compared to PFG. The maximum allocated memory (per task) was 6GB for MAW and 30GB for PFG.

Figure 7
figure 7

Chromosome sequence length versus elapsed time for computing all minimal absent words in the genomes of Homo Sapiens and Mus musculus using MAW and PFG .

Table 3 Elapsed-time comparison of MAW and PFG for computing all minimal absent words in the genome of Arabidopsis thaliana and Drosophila melanogaster
Table 4 Elapsed-time comparison of MAW and PFG for computing all minimal absent words in the genome of Homo Sapiens and Mus musculus

To further evaluate the efficiency of our implementation, we compared it against the corresponding performance of PFG using synthetic data. As basic dataset we used chromosome 1 of Hs. We created five instances S1, S2, S3, S4, and S5 of this sequence by randomly choosing 10%, 20%, 30%, 40%, and 50% of the positions, respectively, and randomly replacing the corresponding letters to one of the four letters of the DNA alphabet. We computed all minimal absent words for each instance. We considered both the 5→3 and the 3→5 DNA strands. Table 5 depicts elapsed-time comparisons of MAW and PFG. MAW is the fastest in all cases.

Table 5 Elapsed-time comparison of MAW and PFG for computing all minimal absent words in synthetic data

Conclusions

In this article, we presented the first O(n)-time and O(n)-space algorithm for computing all minimal absent words based on the construction of suffix arrays. In addition, we provided the respective implementation of this algorithm. Experimental results show that this implementation outperforms existing tools, both in terms of speed and memory.

In a typical application, one would be interested in computing minimal absent words in the whole genome for a set of species under study [11],[12]. Hence, we consider the improvements described in this article to be of great importance. Our immediate target is twofold: first, explore the possibility of implementing the presented algorithm for symmetric multiprocessing systems; and second, devise and implement a fast space-efficient solution for this problem based on the construction of compressed full-text indexes.

Availability and requirements

Project name: MAW MAW

Project home page: http://github.com/solonas13/maw

Operating system: GNU/Linux

Programming language: C

Other requirements: compiler gcc gcc version 4.6.3 or higher

License: GNU GPL

Any restrictions to use by non-academics: licence needed

References

  1. Haubold B, Pierstorff N, Möller F, Wiehe T: Genome comparison without alignment using shortest unique substrings. BMC Bioinformatics. 2005, 6: 123-10.1186/1471-2105-6-123.

    Article  PubMed Central  PubMed  Google Scholar 

  2. Domazet-Lošo M, Haubold B: Efficient estimation of pairwise distances between genomes. Bioinformatics. 2009, 25 (24): 3221-3227. 10.1093/bioinformatics/btp590.

    Article  PubMed  Google Scholar 

  3. Hampikian G, Andersen T: Absent sequences: nullomers and primes. Pacific Symposium on Biocomputing . Edited by: Altman RB, Dunker AK, Hunter L, Murray T, Klein TE. 2007, World Scientific, Maui, Hawaii, USA, 355-366.

    Google Scholar 

  4. Herold J, Kurtz S, Giegerich R: Efficient computation of absent words in genomic sequences. BMC Bioinformatics. 2008, 9: 1-9. 10.1186/1471-2105-9-167.

    Article  Google Scholar 

  5. Wu ZD, Jiang T, Su WJ: Efficient computation of shortest absent words in a genomic sequence. Inform Process Lett. 2010, 110 (14-15): 596-601. 10.1016/j.ipl.2010.05.008.

    Article  Google Scholar 

  6. Pinho AJ, Ferreira PJSG, Garcia SP: On finding minimal absent words. BMC Bioinformatics200911. [http://dx.doi.org/10.1186/1471-2105-10-137]

  7. Crochemore M, Mignosi F, Restivo A: Automata and forbidden words. Inform Process Lett. 1998, 67: 111-117. 10.1016/S0020-0190(98)00104-5.

    Article  Google Scholar 

  8. Mignosi F, Restivo A, Sciortino M: Words and forbidden factors. Theor Comput Sci. 2002, 273 (1–2): 99-117. 10.1016/S0304-3975(00)00436-9.

    Article  Google Scholar 

  9. Fici G: Minimal forbidden words and applications. PhD thesis. Université de Marne-la-Vallée; 2006.

  10. Acquisti C, Poste G, Curtiss D, Kumar S: Nullomers: really a matter of natural selection?. PLoS ONE. 2007, 2 (10): e1022-10.1371/journal.pone.0001022.

    Article  PubMed Central  PubMed  Google Scholar 

  11. Garcia SP, Pinho AJ, Rodrigues JM, Bastos CA, Ferreira PJ: Minimal absent words in prokaryotic and eukaryotic genomes. PLoS ONE. 2011, 6 (1): e16065-10.1371/journal.pone.0016065.

    Article  PubMed Central  PubMed  CAS  Google Scholar 

  12. Garcia SP, Pinho AJ: Minimal absent words in four human genome assemblies. PLoS ONE. 2011, 6 (12): e29344-10.1371/journal.pone.0029344.

    Article  PubMed Central  PubMed  CAS  Google Scholar 

  13. Chairungsee S, Crochemore M: Using minimal absent words to build phylogeny. Theor Comput Sci. 2012, 450 (0): 109-116. 10.1016/j.tcs.2012.04.031.

    Article  Google Scholar 

  14. Belazzougui D, Cunial F, Kärkkäinen J, Mäkinen V: Versatile succinct representations of the bidirectional burrows-wheeler transform. ESA, Volume 8125 of Lecture Notes in Computer Science . Edited by: Bodlaender HL, Italiano GF. 2013, Springer, Sophia Antipolis, France, 133-144.

    Google Scholar 

  15. Manber U, Myers EW: Suffix arrays: a new method for on-line string searches. SIAM J Comput. 1993, 22 (5): 935-948. 10.1137/0222058.

    Article  Google Scholar 

  16. Nong G, Zhang S, Chan WH: Linear suffix array construction by almost pure induced-sorting. Proceedings of the 2009 Data Compression Conference, DCC ’09 . 2009, IEEE Computer Society, Washington, DC, USA, 193-202.

    Chapter  Google Scholar 

  17. Fischer J: Inducing the LCP-Array. Algorithms and Data Structures - 12th International Symposium, Volume 6844 of Lecture Notes in Computer Science . Edited by: Dehne F, Iacono J, Sack JR. 2011, Springer, New York, NY, USA, 374-385.

    Google Scholar 

Download references

Acknowledgements

The publication costs for this article were funded by the Open Access funding scheme of King’s College London. CB is supported by an EPSRC grant (Doctoral Training Grant #EP/J500252/1). SPP is supported by a Research Grant (#RG130720) awarded by the Royal Society. The authors would like to thank the CRIHAN (Centre des Ressources Informatiques de HAute-Normandie, France) for the excellent support and the available computation resources that have been used during the development and test phases. The authors would like to thank Maxime Crochemore for introducing this problem and valuable discussions.

Author information

Authors and Affiliations

Authors

Corresponding author

Correspondence to Solon P Pissis.

Additional information

Competing interests

The authors declare that they have no competing interests.

Authors’ contributions

SPP designed the study. AH and CB devised the algorithms. AH and SPP implemented the algorithms. SPP conducted the experiments. AH, CB, and LM wrote the manuscript. The final version of the manuscript is approved by all authors.

Authors’ original submitted files for images

Rights and permissions

Open Access  This article is licensed under a Creative Commons Attribution 4.0 International License, which permits use, sharing, adaptation, distribution and reproduction in any medium or format, as long as you give appropriate credit to the original author(s) and the source, provide a link to the Creative Commons licence, and indicate if changes were made.

The images or other third party material in this article are included in the article’s Creative Commons licence, unless indicated otherwise in a credit line to the material. If material is not included in the article’s Creative Commons licence and your intended use is not permitted by statutory regulation or exceeds the permitted use, you will need to obtain permission directly from the copyright holder.

To view a copy of this licence, visit https://creativecommons.org/licenses/by/4.0/.

The Creative Commons Public Domain Dedication waiver (https://creativecommons.org/publicdomain/zero/1.0/) applies to the data made available in this article, unless otherwise stated in a credit line to the data.

Reprints and permissions

About this article

Check for updates. Verify currency and authenticity via CrossMark

Cite this article

Barton, C., Heliou, A., Mouchard, L. et al. Linear-time computation of minimal absent words using suffix array. BMC Bioinformatics 15, 388 (2014). https://doi.org/10.1186/s12859-014-0388-9

Download citation

  • Received:

  • Accepted:

  • Published:

  • DOI: https://doi.org/10.1186/s12859-014-0388-9

Keywords