]> git.donarmstrong.com Git - biopieces.git/blobdiff - code_ruby/lib/maasha/fasta.rb
beautifying fasta.rb
[biopieces.git] / code_ruby / lib / maasha / fasta.rb
index f57a6222f981589dd5728b819bb9888be50dc6aa..05655f67c86d609e8e4ab666347df228ad246c50 100644 (file)
@@ -51,14 +51,6 @@ class Fasta < Filesys
 
     entry
   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