]> git.donarmstrong.com Git - biopieces.git/blobdiff - code_ruby/lib/maasha/fastq.rb
got rid of type in filesys.rb
[biopieces.git] / code_ruby / lib / maasha / fastq.rb
index a6b3610e88c6d3abd632c47b46aa31519594591d..e2a96ea86c69bf2f97712c2c0b6fa7c73995b4cd 100644 (file)
@@ -39,10 +39,10 @@ class Fastq < Filesys
       qual           = @io.gets.chomp!
 
       entry          = Seq.new
-      entry.type     = @type.nil? ? nil : @type.downcase
       entry.seq      = seq
       entry.seq_name = seq_name[1 .. seq_name.length]
       entry.qual     = qual
+      entry.type     = nil
 
       entry
     rescue