]> git.donarmstrong.com Git - biopieces.git/blobdiff - code_ruby/lib/maasha/align/pair.rb
polished pairwise alignment code
[biopieces.git] / code_ruby / lib / maasha / align / pair.rb
index 72a5eae798262c7e4c276dd243ff22c7a70fa8cf..8bcbf25bddad3a8143e44d43a6c3a20c1e6790af 100644 (file)
 
 # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
 
+require 'maasha/align/matches'
+require 'maasha/math_aux'
+
+FACTOR_SCORE_LENGTH =  1.0
+FACTOR_SCORE_DIAG   = -1.41
+KMER                = 32
+
 # Module with stuff to create a pairwise aligment.
 module PairAlign
   # Class for creating a pairwise alignment.
@@ -40,7 +47,9 @@ module PairAlign
       @q_entry.seq.downcase!
       @s_entry.seq.downcase!
 
-      align_recurse(@q_entry.seq, @s_entry.seq, 0, 0, @q_entry.length - 1, @s_entry.length - 1, 16, [])
+      space = Space.new(0, 0, @q_entry.length - 1, @s_entry.length - 1)
+
+      align_recurse(@q_entry.seq, @s_entry.seq, space, KMER)
       matches_upcase
       gaps_insert
     end
@@ -54,184 +63,102 @@ module PairAlign
     # depending on a calculated score. New search spaces spanning the spaces
     # between the best scoring matches and the search space boundaries will be
     # cast and recursed into.
-    def align_recurse(q_seq, s_seq, q_min, s_min, q_max, s_max, kmer, matches)
-      matches = matches_select_by_space(matches, q_min, s_min, q_max, s_max)
+    def align_recurse(q_seq, s_seq, space, kmer, matches = [])
+      matches = matches_select_by_space(matches, space)
+      matches = matches_select_by_score(matches, space)
 
       while (matches.size == 0 and kmer > 0)
-        matches = matches_find(q_seq, s_seq, q_min, s_min, q_max, s_max, kmer)
-        kmer /= 2
-      end
-
-      matches_score(matches, q_min, s_min, q_max, s_max)
+        matches = Matches.find(q_seq, s_seq, space.q_min, space.s_min, space.q_max, space.s_max, kmer)
+        #matches = Mem.find(q_seq, s_seq, kmer, space.q_min, space.s_min, space.q_max, space.s_max)
 
-#      matches.each { |m| puts m.to_s(q_seq) }
+        if @matches.empty?
+          matches.sort_by! { |m| m.length }
+        else
+          matches = matches_select_by_score(matches, space)
+        end
 
-      unless @matches.empty?
-        matches = matches.select { |match| match.score > 0 }
+        kmer /= 2
       end
 
       if best_match = matches.pop
         @matches << best_match
 
-        l_q_min = q_min
-        l_s_min = s_min
-        l_q_max = best_match.q_beg - 1
-        l_s_max = best_match.s_beg - 1
+        space_left  = Space.new(space.q_min, space.s_min, best_match.q_beg - 1, best_match.s_beg - 1)
+        space_right = Space.new(best_match.q_end + 1, best_match.s_end + 1, space.q_max, space.s_max)
 
-        r_q_min = best_match.q_end + 1
-        r_s_min = best_match.s_end + 1
-        r_q_max = q_max
-        r_s_max = s_max
-
-        if l_q_max - l_q_min > 0 and l_s_max - l_s_min > 0
-          align_recurse(q_seq, s_seq, l_q_min, l_s_min, l_q_max, l_s_max, kmer, matches)
-        end
-
-        if r_q_max - r_q_min > 0 and r_s_max - r_s_min > 0
-          align_recurse(q_seq, s_seq, r_q_min, r_s_min, r_q_max, r_s_max, kmer, matches)
-        end
+        align_recurse(q_seq, s_seq, space_left, kmer, matches)  unless space_left.empty?
+        align_recurse(q_seq, s_seq, space_right, kmer, matches) unless space_right.empty?
       end
     end
 
     # Method to select matches that lies within the search space.
-    def matches_select_by_space(matches, q_min, s_min, q_max, s_max)
+    def matches_select_by_space(matches, space)
       new_matches = matches.select do |match|
-        match.q_beg >= q_min and
-        match.s_beg >= s_min and
-        match.q_end <= q_max and
-        match.s_end <= s_max
+        match.q_beg >= space.q_min and
+        match.s_beg >= space.s_min and
+        match.q_end <= space.q_max and
+        match.s_end <= space.s_max
       end
 
       new_matches
     end
 
-    def matches_score(matches, q_min, s_min, q_max, s_max)
+    # Method to select matches based on score.
+    def matches_select_by_score(matches, space)
+      matches_score(matches, space)
+
+      matches.select { |match| match.score > 0 }
+    end
+
+    def matches_score(matches, space)
       matches.each do |match|
         score_length = match_score_length(match)
-        score_diag   = match_score_diag(match, q_min, s_min, q_max, s_max)
-        score_corner = match_score_corner(match, q_min, s_min, q_max, s_max)
+        score_diag   = match_score_diag(match, space)
 
-
-        match.score = score_length - score_diag - score_corner
-        puts match
-        puts "score_length: #{score_length}   score_diag: #{score_diag}   score_corner: #{score_corner}  score: #{match.score}"
+        match.score = score_length + score_diag
       end
 
       matches.sort_by! { |match| match.score }
     end
 
     def match_score_length(match)
-      match.length
-    end
-
-    def match_score_diag(match, q_min, s_min, q_max, s_max)
-        dist1 = (match.q_beg - match.s_beg).abs
-        dist2 = ((match.q_end - match.q_end).abs - dist1).abs
-
-        dist1 < dist2 ? dist1 : dist2
-    end
-
-    def match_score_corner(match, q_min, s_min, q_max, s_max)
-      1
-    end
-
-
-    # Method that finds all maximally expanded non-redundant matches shared
-    # between two sequences inside a given search space.
-    def matches_find(q_seq, s_seq, q_min, s_min, q_max, s_max, kmer)
-      matches   = []
-      redundant = Hash.new { |h, k| h[k] = [] }
-
-      s_index = index_seq(s_seq, s_min, s_max, kmer)
-
-      q_pos = q_min
-
-      while q_pos <= q_max - kmer + 1
-        q_oligo = q_seq[q_pos ... q_pos + kmer]
-
-        s_index[q_oligo].each do |s_pos|
-          match = Match.new(q_pos, s_pos, kmer)
-
-          unless match_redundant?(redundant, match)
-            match_expand(match, q_seq, s_seq, q_min, s_min, q_max, s_max)
-            matches << match
-
-            match_redundant_add(redundant, match)
-          end
-        end
-
-        q_pos += 1
-      end
-
-      matches
-    end
-
-    # Method that indexes a sequence within a given interval such that the
-    # index contains all oligos of a given kmer size and the positions where
-    # this oligo was located.
-    def index_seq(seq, min, max, kmer)
-      index_hash = Hash.new { |h, k| h[k] = [] }
-
-      pos = min
-
-      while pos <= max - kmer + 1
-        oligo = seq[pos ... pos + kmer]
-        index_hash[oligo] << pos
-
-        pos += 1
-      end
-
-      index_hash
-    end
-
-    # Method to check if a match is redundant.
-    def match_redundant?(redundant, match)
-      redundant[match.q_beg].each do |s_interval|
-        if s_interval.include? match.s_beg and s_interval.include? match.s_end
-          return true
-        end
-      end
-
-      false
-    end
-
-    # Method that adds a match to the redundancy index.
-    def match_redundant_add(redundant, match)
-      (match.q_beg .. match.q_end).each do |q|
-        redundant[q] << (match.s_beg .. match.s_end)
-      end
-    end
-
-    # Method that expands a match as far as possible to the left and right.
-    def match_expand(match, q_seq, s_seq, q_min, s_min, q_max, s_max)
-      match_expand_left(match, q_seq, s_seq, q_min, s_min)
-      match_expand_right(match, q_seq, s_seq, q_max, s_max)
-
-      match
-    end
-
-    # Method that expands a match as far as possible to the left.
-    def match_expand_left(match, q_seq, s_seq, q_min, s_min)
-      while match.q_beg > q_min and
-            match.s_beg > s_min and 
-            q_seq[match.q_beg - 1] == s_seq[match.s_beg - 1]
-        match.q_beg  -= 1
-        match.s_beg  -= 1
-        match.length += 1
+      match.length * FACTOR_SCORE_LENGTH
+    end
+
+    def match_score_diag(match, space)
+      if space.q_dim > space.s_dim   # s_dim is the narrow end
+        dist_beg = Math.dist_point2line(match.q_beg,
+                                        match.s_beg,
+                                        space.q_min,
+                                        space.s_min,
+                                        space.q_min + space.s_dim,
+                                        space.s_min + space.s_dim)
+
+        dist_end = Math.dist_point2line( match.q_beg,
+                                         match.s_beg,
+                                         space.q_max - space.s_dim,
+                                         space.s_max - space.s_dim,
+                                         space.q_max,
+                                         space.s_max)
+      else
+        dist_beg = Math.dist_point2line( match.q_beg,
+                                         match.s_beg,
+                                         space.q_min,
+                                         space.s_min,
+                                         space.q_min + space.q_dim,
+                                         space.s_min + space.q_dim)
+
+        dist_end = Math.dist_point2line( match.q_beg,
+                                         match.s_beg,
+                                         space.q_max - space.q_dim,
+                                         space.s_max - space.q_dim,
+                                         space.q_max,
+                                         space.s_max)
       end
 
-      match
-    end
+      dist_min = dist_beg < dist_end ? dist_beg : dist_end
 
-    # Method that expands a match as far as possible to the right.
-    def match_expand_right(match, q_seq, s_seq, q_max, s_max)
-      while match.q_end < q_max and
-            match.s_end < s_max and
-            q_seq[match.q_end + 1] == s_seq[match.s_end + 1]
-        match.length += 1
-      end
-
-      match
+      dist_min * FACTOR_SCORE_DIAG
     end
 
     # Method for debugging purposes that upcase matching sequence while non-matches
@@ -262,14 +189,14 @@ module PairAlign
         s_gaps += diff.abs
       end
 
-      @matches[1 .. -1].each do |match|
-        diff = (q_gaps + match.q_beg) - (s_gaps + match.s_beg)
+      @matches[1 .. -1].each do |m|
+        diff = (q_gaps + m.q_beg) - (s_gaps + m.s_beg)
 
         if diff < 0
-          @q_entry.seq.insert(match.q_beg + q_gaps, "-" * diff.abs)
+          @q_entry.seq.insert(m.q_beg + q_gaps, "-" * diff.abs)
           q_gaps += diff.abs
         elsif diff > 0
-          @s_entry.seq.insert(match.s_beg + s_gaps, "-" * diff.abs)
+          @s_entry.seq.insert(m.s_beg + s_gaps, "-" * diff.abs)
           s_gaps += diff.abs
         end
       end
@@ -284,29 +211,31 @@ module PairAlign
     end
   end
 
-  # Class for containing a match between two sequences q and s.
-  class Match
-    attr_accessor :q_beg, :s_beg, :length, :score
+  # Class for containing a search space between two sequences q and s.
+  class Space
+    attr_reader :q_min, :s_min, :q_max, :s_max
 
-    def initialize(q_beg, s_beg, length, score = 0.0)
-      @q_beg  = q_beg
-      @s_beg  = s_beg
-      @length = length
-      @score  = score
+    def initialize(q_min, s_min, q_max, s_max)
+      @q_min = q_min
+      @s_min = s_min
+      @q_max = q_max
+      @s_max = s_max
     end
 
-    def q_end
-      @q_beg + @length - 1
+    def q_dim
+      @q_max - @q_min + 1
     end
 
-    def s_end
-      @s_beg + @length - 1
+    def s_dim
+      @s_max - @s_min + 1
     end
 
-    def to_s(seq = nil)
-      s = "q: #{@q_beg} #{q_end} s: #{@s_beg} #{s_end} l: #{@length} s: #{@score}"
-      s << " seq: #{seq[@q_beg .. q_end]}" if seq
-      s
+    def empty?
+      if @q_max - @q_min >= 0 and @s_max - @s_min >= 0
+        return false
+      end
+
+      true
     end
   end
 end