class HTML_Table_of_Peak_Picking_Log

Public Class Methods

new(batch_folderpath,sample_index,analyte_name,chromatogram_type) click to toggle source
Calls superclass method HTML_Table::new
# File lib/html_table_of_peak_picking_log.rb, line 6
def initialize(batch_folderpath,sample_index,analyte_name,chromatogram_type)

  log = ExeCppLogReader.new(batch_folderpath,sample_index,analyte_name,chromatogram_type)
  retcode,rundetails = log.run

  unless !retcode
    arrData = build_json rundetails[:stdout]['peak_list']
    super(arrData)
  end


end