Method: LabTech::Experiment#pct_correct

Defined in:
app/models/lab_tech/experiment.rb

#pct_correctObject



25
26
27
28
# File 'app/models/lab_tech/experiment.rb', line 25

def pct_correct
  return "N/A" if total_count.zero?
  format_pct( equivalent_count, total_count )
end