]> git.donarmstrong.com Git - biopieces.git/blobdiff - code_ruby/lib/maasha/fastq.rb
removed bad method from fastq.rb
[biopieces.git] / code_ruby / lib / maasha / fastq.rb
index b3ba85fba466bb2048a020365c8d06093ea13276..a6b3610e88c6d3abd632c47b46aa31519594591d 100644 (file)
@@ -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