Class: LabwareCreators::PcrCyclesBinnedPlate::CsvFileForDuplexSeq
- Inherits:
-
CsvFileBase
- Object
- CsvFileBase
- LabwareCreators::PcrCyclesBinnedPlate::CsvFileForDuplexSeq
- Defined in:
- app/models/labware_creators/pcr_cycles_binned_plate/csv_file_for_duplex_seq.rb
Overview
This version of the csv file is for Duplex Seq.
Constant Summary collapse
- FIELDS_FOR_WELL_DETAILS =
%w[diluent_volume pcr_cycles submit_for_sequencing sub_pool coverage sample_volume] .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
21 22 23 24 25 |
# File 'app/models/labware_creators/pcr_cycles_binned_plate/csv_file_for_duplex_seq.rb', line 21 def well_details_header_row @well_details_header_row ||= PcrCyclesBinnedPlate::CsvFile::DuplexSeq::WellDetailsHeader.new(@data[2]) if @data[ 2 ] end |