From: martinahansen Date: Fri, 23 Sep 2011 09:59:49 +0000 (+0000) Subject: removed bad method from fastq.rb X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=41586664ea095f6b42de7e49a7d31c6ad893a49a;p=biopieces.git removed bad method from fastq.rb git-svn-id: http://biopieces.googlecode.com/svn/trunk@1534 74ccb610-7750-0410-82ae-013aeee3265d --- diff --git a/code_ruby/lib/maasha/fastq.rb b/code_ruby/lib/maasha/fastq.rb index b3ba85f..a6b3610 100644 --- a/code_ruby/lib/maasha/fastq.rb +++ b/code_ruby/lib/maasha/fastq.rb @@ -49,14 +49,6 @@ class Fastq < Filesys nil end end - - # TODO - this should be some custom to_s method instead. - def puts(record) - if record.has_key? :SEQ_NAME and record.has_key? :SEQ - @io.print ">#{record[:SEQ_NAME]}\n" - @io.print "#{record[:SEQ]}\n" - end - end end