1 / 20

Output Sensitive Algorithm for Finding Similar Objects

Output Sensitive Algorithm for Finding Similar Objects. Takeaki Uno National Institute of Informatics, The Graduate University for Advanced Studies (Sokendai). Jul/2/2007 Combinatorial Algorithms Day. Motivation: Analyzing Huge Data.

waneta
Download Presentation

Output Sensitive Algorithm for Finding Similar Objects

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. Output Sensitive Algorithm for Finding Similar Objects Takeaki Uno National Institute of Informatics, The Graduate University for Advanced Studies (Sokendai) Jul/2/2007 Combinatorial Algorithms Day

  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 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 of similarity) •Maybe, this is very basic and fundamental  There would be many applications -finding global similar structure, - constructing neighbor graphs, -detect locally dense structures (groups of related objects) In this talk, we look at the strings

  4. Existing Studies •There are so many studies on similarity search (homology search) Given a database, construct a data structure which enable 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 is not popular

  5. Our Problem 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 ATGCCGCG GCGTGTAC GCCTCTAT TGCGTTTC TGTAATGA ... ・ATGCCGCG , AAGCCGCC ・GCCTCTAT , GCTTCTAA ・TGTAATGA , GGTAATGG ...

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

  7. Basic Idea: Fixed Position Subproblem •Consider the following subproblem: •For given l-dpositions of letters, find all pairs of strings with Hamming distance at most dsuch that "the letters on the l-dpositions are the same" Ex)2nd, 4th, 5th positions of strings with length 5 •We can solve by "radix sort" by letters on the positions, in O(l n) time.

  8. 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-d positions (say P) are the same  In at least one combination, S1 and S2 is found (in the subproblem of combination P) • # combinations islCd. When l=5 and d=2, it is10    Computation is "radix sorts +α", O(lCd ln) time for sorting    Use branch-and-bound to radix sort, in O(lCd n) time

  9. Exercise A B C A B D A C C E F G F F G A F G G A B G A B A B C A B D A C C E F G F F G A F G A B C A C C A B D A F G E F G F F G G A B A B C A B D A C C A F G E F G F F G G A B ・ Find all pairs of strings with Hamming distance at most 1

  10. Duplication: How long is "+α" •If two strings S1 and S2 are exactly the same, their combination is found in all subproblems,lCd times If we allow the duplications, "+α" needs O(M lCd ) time  To avoid the duplication, use "canonical positions"

  11. 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(d) time, "+α" needs O(K d lCd ) time Avoid duplications without keeping the solutions in memory O(lCd (n+dM)) = O(2l(n + lM)) time in total ( O(n+M)) if l is a fixed constant )

  12. In Practice •Is lCd small in practice? In some case, yes (ex, genome sequences) •If we want to find strings with at most 10% of error 20C2 = 190, 30C3 = 4060, 60C6 = 50063860… maybe, large for (bit) large l • For dealing with (bit) large l, we use a variant of this algorithm

  13. Partition to Blocks •Consider the partition of strings into kblocks •For given k-dpositions of blocks, find all pairs of strings with distance at most ds. t. "the blocks on the positions are the same" • Radix sorts are done in O(kCd n) time Ex)2nd, 4th, 5th positions of blocks of strings of length 5

  14. Small "+α" is Expected •The Hamming distance of two strings may be larger than d, even if their k-dblocks are the same In the worst case, "+α" is not linear in #output •However, if #letters in k-dblocks are large enough, the strings having the same blocks are few "+α" is not large, in practice, in almost O(kCd n) time

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

  16. Comparison of Long Strings •Slice one of the long strings with overlaps •Partition the other long string without overlap •Compare all pairs •1draw a matrix: intensity of a cell is given by #pairs inside •2draw a point if 3 pairs in an area of lengthαand width β: two substrings of length αhave error of bit less than k%, they have at least some short similar substrings

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

  18. Homology Search on Chromosomes 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

  19. 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)

  20. Conclusion •Output sensitive algorithm for finding pairs of similar strings ( in the term of Hamming distance) •Multiple-classification by positions to be the same •Using blocks to reduce the practical computation •Application to genome sequence comparison Future works •Extension to other objects (sets, sequences, graphs) •Extension to continuous objects (points in Euclidian space) •Efficient spin out heuristics for practice •Genome analyze system

More Related