Class: Barcode::FormatHandlers::CgapRack
- Inherits:
-
BaseRegExBarcode
- Object
- BaseRegExBarcode
- Barcode::FormatHandlers::CgapRack
- Defined in:
- app/models/barcode/format_handlers.rb
Overview
CGAP rack barcodes are generated by the CGAP LIMS
Instance Attribute Summary
Attributes inherited from BaseRegExBarcode
Instance Method Summary collapse
Methods inherited from BaseRegExBarcode
#=~, #barcode_prefix, #child, #code128_barcode, #code128_barcode?, #code39_barcode, #code39_barcode?, #initialize, #suffix, #valid?
Methods included from Ean13Incompatible
#ean13_barcode, #ean13_barcode?
Constructor Details
This class inherits a constructor from Barcode::FormatHandlers::BaseRegExBarcode
Instance Method Details
#number ⇒ Object
224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 |
# File 'app/models/barcode/format_handlers.rb', line 224 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 |