]> git.donarmstrong.com Git - biopieces.git/commitdiff
removed bad method from fastq.rb
authormartinahansen <martinahansen@74ccb610-7750-0410-82ae-013aeee3265d>
Fri, 23 Sep 2011 09:59:49 +0000 (09:59 +0000)
committermartinahansen <martinahansen@74ccb610-7750-0410-82ae-013aeee3265d>
Fri, 23 Sep 2011 09:59:49 +0000 (09:59 +0000)
git-svn-id: http://biopieces.googlecode.com/svn/trunk@1534 74ccb610-7750-0410-82ae-013aeee3265d

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