From 36204ec2645fc6d700eb846b992e8f7d0a6d347e Mon Sep 17 00:00:00 2001 From: martinahansen Date: Thu, 27 Sep 2012 12:40:13 +0000 Subject: [PATCH] finishing work on match.rb git-svn-id: http://biopieces.googlecode.com/svn/trunk@1943 74ccb610-7750-0410-82ae-013aeee3265d --- code_ruby/lib/maasha/align/match.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code_ruby/lib/maasha/align/match.rb b/code_ruby/lib/maasha/align/match.rb index c17ec7f..b137711 100644 --- a/code_ruby/lib/maasha/align/match.rb +++ b/code_ruby/lib/maasha/align/match.rb @@ -22,7 +22,11 @@ # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< +# Class containing methods for located all Maximally Extended Matches (MEMs) between +# two strings. class Matches + # Class method to located all MEMs bewteen two sequences within a given search + # space and seed with kmers of a given size. def self.find(q_seq, s_seq, q_min, s_min, q_max, s_max, kmer) m = self.new m.matches_find(q_seq, s_seq, q_min, s_min, q_max, s_max, kmer) -- 2.39.5