Class: LabwareCreators::PcrCyclesBinnedPlate::CsvFileForTNanoSeq
- Inherits:
-
CsvFileBase
- Object
- CsvFileBase
- LabwareCreators::PcrCyclesBinnedPlate::CsvFileForTNanoSeq
- Defined in:
- app/models/labware_creators/pcr_cycles_binned_plate/csv_file_for_t_nano_seq.rb
Overview
This version of the csv file is for Targeted NanoSeq.
Constant Summary collapse
- FIELDS_FOR_WELL_DETAILS =
%w[ concentration input_amount_available input_amount_desired sample_volume diluent_volume pcr_cycles hyb_panel ].freeze
Instance Method Summary collapse
-
#well_details_header_row ⇒ Object
Returns the contents of the header row for the well detail columns.
Instance Method Details
#well_details_header_row ⇒ Object
Returns the contents of the header row for the well detail columns
28 29 30 31 32 |
# File 'app/models/labware_creators/pcr_cycles_binned_plate/csv_file_for_t_nano_seq.rb', line 28 def well_details_header_row @well_details_header_row ||= PcrCyclesBinnedPlate::CsvFile::TNanoSeq::WellDetailsHeader.new(@data[2]) if @data[ 2 ] end |