Class: FlexStationData::Plate
- Inherits:
-
Object
- Object
- FlexStationData::Plate
- Defined in:
- lib/flex_station_data/plate.rb
Instance Attribute Summary collapse
-
#label ⇒ Object
readonly
Returns the value of attribute label.
-
#sample_map ⇒ Object
readonly
Returns the value of attribute sample_map.
-
#temperatures ⇒ Object
readonly
Returns the value of attribute temperatures.
-
#times ⇒ Object
readonly
Returns the value of attribute times.
-
#wells ⇒ Object
readonly
Returns the value of attribute wells.
Instance Method Summary collapse
-
#initialize(label, times, temperatures, wells, sample_map) ⇒ Plate
constructor
A new instance of Plate.
- #samples ⇒ Object
Constructor Details
#initialize(label, times, temperatures, wells, sample_map) ⇒ Plate
Returns a new instance of Plate.
9 10 11 12 13 14 15 |
# File 'lib/flex_station_data/plate.rb', line 9 def initialize(label, times, temperatures, wells, sample_map) @label = label @times = times @temperatures = temperatures @wells = wells @sample_map = sample_map end |
Instance Attribute Details
#label ⇒ Object (readonly)
Returns the value of attribute label.
7 8 9 |
# File 'lib/flex_station_data/plate.rb', line 7 def label @label end |
#sample_map ⇒ Object (readonly)
Returns the value of attribute sample_map.
7 8 9 |
# File 'lib/flex_station_data/plate.rb', line 7 def sample_map @sample_map end |
#temperatures ⇒ Object (readonly)
Returns the value of attribute temperatures.
7 8 9 |
# File 'lib/flex_station_data/plate.rb', line 7 def temperatures @temperatures end |
#times ⇒ Object (readonly)
Returns the value of attribute times.
7 8 9 |
# File 'lib/flex_station_data/plate.rb', line 7 def times @times end |
#wells ⇒ Object (readonly)
Returns the value of attribute wells.
7 8 9 |
# File 'lib/flex_station_data/plate.rb', line 7 def wells @wells end |