1 / 23

An Efficient Algorithm for Finding Similar Short Substrings from Large Scale String Data

An Efficient Algorithm for Finding Similar Short Substrings from Large Scale String Data. Takeaki Uno National Institute of Informatics, JAPAN & The Graduate University for Advanced Science. May/23/2008 PAKDD 2008. Motivation: Analyzing Huge Data.

aretha
Télécharger la présentation

An Efficient Algorithm for Finding Similar Short Substrings from Large Scale String Data

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. An Efficient Algorithm for Finding Similar Short Substrings from Large Scale String Data Takeaki Uno National Institute of Informatics, JAPAN & The Graduate University for Advanced Science May/23/2008 PAKDD 2008

  2. Motivation: Analyzing Huge Data •Recent information technology gave us many huge database - Web, genome, POS, log, … •"Construction" and "keyword search" can be done efficiently •The next step is analysis; capture features of the data - statistics, such as size, #rows, density, attributes, distribution… • Can we get more?  look at (simple) local structures but keep being simple and basic Database ATGCGCCGTA TAGCGGGTGG TTCGCGTTAG GGATATAAAT GCGCCAAATA ATAATGTATTA TTGAAGGGCG ACAGTCTCTCA ATAAGCGGCT Results of experiments genome

  3. Our Focus •Find all pairs of similar objects (or structures) (or binary relation, instead) •Maybe, this is very basic and fundamental  There would be many applications -detecting global similar structures, - constructing neighbor graphs, -detecting locally dense structures (groups of related objects) In this talk, we look at strings

  4. Existing Studies •There are so many studies on similarity search (homology search) Given a database, construct a data structure which enables us to find the objects similar to the given a query object, quickly -strings with Hamming distance, edit distance -points in plane (k-d trees), Euclidian space -sets -constructing neighbor graphs (for smaller dimensions) -genome sequence comparison (heuristics) •Both exact and approximate approaches •All pairs comparison does not work for large scale data

  5. size = 1,000,000 size = 100 2-3 times 10,000 times Approach from Algorithm Theory •Parallel computation is a popular way to fast computation, but its high cost, including hardness of programming, is a disadvantage •Algorithm improvement decreases the increase against the database size by the derivation on the design of the way of computation Efficiency increases as the increase of database size We approach the problem from the algorithmic point

  6. Our Problem •We address databases whose records are short strings Problem: For given a database composed of n strings of the fixed same length l, and a threshold d, find all the pairs of strings such that the Hamming distance of the two strings is at most d. •We propose an efficient algorithm SACHICA (Scalable Algorithm for Characteristic/Homogenous Interval Calculation), and a method to detect long similar substrings of input strings (especially efficient for genomic data) ATGCCGCG GCGTGTAC GCCTCTAT TGCGTTTC TGTAATGA ... ・ATGCCGCG , AAGCCGCC ・GCCTCTAT , GCTTCTAA ・TGTAATGA , GGTAATGG ...

  7. Approaching Long-string Similarity •When two strings S1 andS2 are similar, they must have several pairs of similar short substrings •“Having several similar substrings” is a necessary condition to be similar strings Ex) for strings of length 3000 s.t., Hamming distance 290 (=10%) they have at least 3 pairs of substrings of length 30 with Hamming distance at most 2 the position of these substrings must differ at most 30, if we allow deletion and insertion •It gives a condition that substrings of length β are similar only if “k pairs of their short substrings are similar, and their start positions differ at most α

  8. Detecting Long Similar Substrings • Consider to find long similar substrings of given strings S1 andS2 • Comparison of all substrings of length β needs square time redundant overlapping pairs use our similarity condition (1) find all pairs of similar short substrings (2)scan diagonal belt of width 2α to find an interval of length β including k pairs (3)shift the diagonal belt by α, and repeat •We can always find substrings of length βsatisfying the condition approach from similar short substrings is possible

  9. Related Works •Computing edit/Hamming distance is done in square/linear time the whole strings have to be similar can not detect local exchange •Heuristic homology search such as BLAST, Pattern Hunter usually finds exact match of short substrings (11 letters), and extend must find terrible number of pairs when input strings are huge lengthen 11 letters loses the accuracy heuristics, ignoring frequent substring, dealing only gene areas •Similarity search involves huge number of queries, taking much much longer time than exact search

  10. Trivial Bound of the Complexity •If all the strings are exactly the same, we have to output all the pairs, thus take Θ(n2) time simple all pairs comparison of O(l n2) time is optimal, if l is a fixed constant is there no improvement? •In practice, we would analyze only when output is small, otherwise the analysis is non-sense  consider complexity in the term of the output size M: #outputs We propose O(2l(n+lM)) time algorithm

  11. Basic Idea: Solve Subproblem •Consider the partition of strings into kblocks, and a subproblem subproblem:for given k-d block positions, find all pairs of strings with distance at most ds.t. "the given blocks are the same" Ex)2nd, 4th, 5th blocks of S1and S2(length 30) are the same  much much fewer comparisons !! •We can solve by "radix sort" on combined blocks, in O(l n) time.

  12. Examine All Cases •Solve the subproblem for all combinations of the positions if distance of two strings S1 and S2 is at most 2, letters on l-2 blocks are the same  in at least one combination of blocks, the pair ”S1 and S2” is found (in the subproblem of combination P) • #combinations iskCd. When k=5 and d=2, it is10  computation is "radix sorts +α", O(kCd ln) time for sorting  recursive radix sort to reducing to O(kCd n)

  13. Example ABCDE ABDDE ADCDE CDEFG CDEFF CDEGG AAGAB A BCDE A BDDE A DCDE C DEFG C DEFF C DEGG A AGAB A BC DE A BD DE A DC DE C DE FG C DE FF C DE GG A AG AB ABC DE ABD DE ADC DE CDE FG CDE FF CDE GG AAG AB ・ Find all pairs of strings with Hamming distance at most 1

  14. Figure out Intuition •Finding pairs of similar records is something finding all certain cells in a matrix •All pairs comparison sweeps and looks at all cells •Our multi-classification algorithm recursively reduces the areas to be checked in many ways, thus the search route forms a tree, whose leaves corresponds to a group of strings to be compared

  15. Avoid Duplications by Canonical Positions •For two strings S1 and S2, their canonical positions are the first l-d positions of the same letters •Only we output the pair S1 and S2 only in the subproblem of their canonical positions •Computation of canonical posisions takes O(l) time, "+α" needs O(M l kCd ) time Avoid duplications without keeping the solutions in memory O(lCd (n+dM)) = O(2l(n + lM)) time in total ( if we set k=l )

  16. Difference from BLAST •The original “BLAST” algorithm finds pairs of the identical intervals of 11 letters  roughly, classifies into 411 =4 million groups  may take long time for 100 million letters •Our method for length 30 with Hamming distance 3 (quality equal to finding same interval of 7 letters), with dividing into 6 blocks  roughly, classifies into 415 =1,000 million groups, (20 times)  may take long time for 2000 million letters, but we can increase the #blocks But, not good at searching a given short string (no difference of time between many strings and one string)

  17. Prefixes of Y chromosome of Human Note PC with Pentium M 1.1GHz, 256MB RAM Experiments: l = 20 and d = 0,1,2,3

  18. human 21st chr. chimpanzee 22nd chr. Comparison of Chromosome Human 21st and chimpanzee 22nd chromosomes •Take strings of 30 letters from both, with overlaps • Intensity is given by # pairs •White  possibly similar •Black  never similar •Grid lines detect "repetitions of similar structures" 20 min. by PC

  19. Homology Search on Mouse X Chr. human X chr. mouse X chr. Human X and mouse X chromosomes (150M strings for each) •take strings of 30 letters beginning at every position ・ For human X, without overlaps ・ d=2,k=7 ・ dots if 3 points are in area of width 300 and length 3000 1 hour by PC

  20. Comparison of Many Bacterias Comparison of the genomes of 30 bacteria •The genomes are concatenated and compared in the same way •The genomes are concatenated and compared in the same way 1 hour by PC

  21. Comparison of BAC clones •Sequencing a genome is done by detecting overlaps of fragments • When genome has complex repeating structures, detection is hard •We detected the overlaps in the mouse genome, and completed some undetermined complex repeating parts (joint research with Koide, Umemori of National Institute of Genetics, Japan) 1 sec. by PC for a pair

  22. Extensions ??? •Can we solve the problem for other objects? (sets, sequences, graphs,…) •For graphs, maybe yes, but not sure for the practical performance •For sets, Hamming distance is not preferable. for large sets, many difference should be allowed. •For continuous objects, such as points in Euclidian space, we can hardly bound the complexity in the same way. (In the discrete version, the neighbors are finite, actually classified into constant number of groups)

  23. Conclusion Future works •Output sensitive algorithm for finding pairs of similar strings ( in the term of Hamming distance) •Multi-classification for speeding up •Application to genome sequence comparison •Models and algorithms for natural language text •Extension to other objects (sets, sequences, graphs) •Extension to continuous objects (points in Euclidian space) •Efficient spin-out heuristics for practice •Genome analyze tools and systems

More Related