Class: CherrypickTask::PickTarget::ByInterlacedColumn

Inherits:
Base
  • Object
show all
Defined in:
app/models/cherrypick_task/pick_target.rb

Overview

Deals with generating the pick plate by travelling in an interlaced column direction, so A1, C1, E1 ...

Instance Attribute Summary

Attributes inherited from Base

#size

Instance Method Summary collapse

Methods inherited from Base

#add_any_consecutive_control_requests, #add_any_initial_control_requests, #add_control_request, #add_remaining_control_requests, #content, #create_control_requests!, #full?, #initialize, #push, #push_with_controls, #remaining_wells

Constructor Details

This class inherits a constructor from CherrypickTask::PickTarget::Base

Instance Method Details

#completed_viewObject



201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
# File 'app/models/cherrypick_task/pick_target.rb', line 201

 do
  # NOTE: The following attribute is not required for Microarray Genotyping.
  # I think this might be broken and suggests that there should be separate classes for project: one for
  # next-gen sequencing that includes this attribute in it's metadata, and one for microarray genotyping
  # that doesn't.
  include ProjectManager::Associations
  include BudgetDivision::Associations

  custom_attribute(:project_cost_code, required: true)
  custom_attribute(:funding_comments)
  custom_attribute(:collaborators)
  custom_attribute(:external_funding_source)
  custom_attribute(:sequencing_budget_cost_centre)
  custom_attribute(:project_funding_model, in: PROJECT_FUNDING_MODELS)
  custom_attribute(:gt_committee_tracking_id)

  before_validation do |record|
    record.project_cost_code = nil if record.project_cost_code.blank?
    record.project_funding_model = nil if record.project_funding_model.blank?
  end
end