[BioRuby-cvs] bioruby/lib/bio/appl/blast format0.rb,1.17,1.18
Naohisa Goto
ngoto at dev.open-bio.org
Sun Apr 30 05:48:01 UTC 2006
Update of /home/repository/bioruby/bioruby/lib/bio/appl/blast
In directory dev.open-bio.org:/tmp/cvs-serv18160/blast
Modified Files:
format0.rb
Log Message:
parse error (missing hits) for some hits of which database sequence names contain 'Score'.
Index: format0.rb
===================================================================
RCS file: /home/repository/bioruby/bioruby/lib/bio/appl/blast/format0.rb,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** format0.rb 22 Feb 2006 08:46:15 -0000 1.17
--- format0.rb 30 Apr 2006 05:47:59 -0000 1.18
***************
*** 781,785 ****
@f0hitname = data.shift
@hsps = []
! while r = data[0] and /^\s+Score/ =~ r
@hsps << HSP.new(data)
end
--- 781,785 ----
@f0hitname = data.shift
@hsps = []
! while r = data[0] and /\A\s+Score/ =~ r
@hsps << HSP.new(data)
end
More information about the bioruby-cvs
mailing list