Skip to content

Commit

Permalink
fix for specs
Browse files Browse the repository at this point in the history
  • Loading branch information
Jim Vallandingham committed Jul 19, 2012
1 parent 76e889d commit e83eb91
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion spec/casava_output_parser_spec.rb
Expand Up @@ -2,11 +2,12 @@
require 'illuminati/casava_output_parser'

class FakeSample
attr_accessor :lane, :barcode_string, :illumina_barcode_string
attr_accessor :lane, :barcode_string, :illumina_barcode_string, :read_count
def initialize(lane, barcode)
self.lane = lane
self.barcode_string = barcode
self.illumina_barcode_string = barcode
self.read_count = 1
end
def id
"#{lane}_#{barcode_string}"
Expand Down

0 comments on commit e83eb91

Please sign in to comment.