Class: LabelPrinter::Label::SampleManifestMultiplex

Inherits:
BaseTube
  • Object
show all
Defined in:
lib/label_printer/label/sample_manifest_multiplex.rb

Instance Attribute Summary collapse

Attributes included from MultipleLabels

#count

Instance Method Summary collapse

Methods inherited from BaseTube

#assets, #barcode, #build_label, #date_today, #round_label_bottom_line, #round_label_top_line, #second_line, #third_line

Methods included from MultipleLabels

#create_labels, #labels

Constructor Details

#initialize(options) ⇒ SampleManifestMultiplex

Returns a new instance of SampleManifestMultiplex.



7
8
9
10
11
# File 'lib/label_printer/label/sample_manifest_multiplex.rb', line 7

def initialize(options)
  super()
  @sample_manifest = options[:sample_manifest]
  @only_first_label = options[:only_first_label]
end

Instance Attribute Details

#sample_manifestObject (readonly)

Returns the value of attribute sample_manifest.



5
6
7
# File 'lib/label_printer/label/sample_manifest_multiplex.rb', line 5

def sample_manifest
  @sample_manifest
end

Instance Method Details

#first_line(_tube = nil) ⇒ Object



13
14
15
# File 'lib/label_printer/label/sample_manifest_multiplex.rb', line 13

def first_line(_tube = nil)
  sample_manifest.study.abbreviation
end

#tubesObject



17
18
19
# File 'lib/label_printer/label/sample_manifest_multiplex.rb', line 17

def tubes
  [sample_manifest.printables]
end