Class: IlluminaHtp::Requests::SharedLibraryPrep

Inherits:
StdLibraryRequest show all
Defined in:
app/models/illumina_htp/requests/shared_library_prep.rb

Overview

Used in the old-style WGS and ICS pipelines to reflect the shared portion

Constant Summary

Constants included from Metadata

Metadata::SECTION_FIELDS

Constants included from Request::Statemachine

Request::Statemachine::ACTIVE, Request::Statemachine::COMPLETED_STATE, Request::Statemachine::INACTIVE, Request::Statemachine::OPENED_STATE, Request::Statemachine::SORT_ORDER

Constants included from StandardNamedScopes

StandardNamedScopes::SORT_FIELDS, StandardNamedScopes::SORT_ORDERS

Instance Method Summary collapse

Methods inherited from StdLibraryRequest

#on_failed, #valid_purpose?

Methods inherited from Request::LibraryCreation

#aliquot_attributes, fragment_size_details, #on_started

Methods included from Request::CustomerResponsibility

included

Methods inherited from CustomerRequest

#customer_accepts_responsibility!, #generate_create_request_event, #generate_destroy_request_event, #generate_request_event, #update_responsibilities!

Methods inherited from Request

accessioning_required?, #add_comment, #aliquot_attributes, #associated_studies, #cancelable?, #copy, #current_request_event, #customer_accepts_responsibility!, delegate_validator, #detect_descriptor, #eventful_studies, for_study, #format_qc_information, get_all_comments, #has_passed, #lab_events_for_batch, #manifest_processed!, #most_recent_event_named, #next_request_type_id, #next_requests, #next_requests_via_asset, #next_requests_via_submission, number_expected_for_submission_id_and_request_type_id, #previous_failed_requests?, #priority, #product_line, #project=, #project_id=, #ready?, #request_type_updatable?, #return_pending_to_inbox!, #run_events, #source_labware, #study=, #study_id=, #submission_plate_count, #submitted_at, #target_purpose, #update_priority, #update_responsibilities!

Methods included from Request::Statistics

#asset_statistics, #progress_statistics, #sample_statistics_new

Methods included from EventfulRecord

#has_many_events, #has_many_lab_events, #has_one_event_with_family

Methods included from Metadata

#has_metadata

Methods included from Batch::RequestBehaviour

included, #recycle_from_batch!, #return_for_inbox!, #with_batch_id

Methods included from Request::Statemachine

#cancellable?, #change_decision!, #closed?, #failed_upstream!, #finished?, #on_blocked, #on_cancelled, #on_failed, #on_hold, #on_passed, #on_started, #open?, #terminated?, #transfer_aliquots

Methods included from StandardNamedScopes

included

Methods included from Commentable

#after_comment_addition

Methods included from AASM::Extensions

#transition_to

Methods included from Uuid::Uuidable

included, #unsaved_uuid!, #uuid

Methods included from Api::RequestIo::Extensions

included, #json_root

Methods included from Aliquot::DeprecatedBehaviours::Request

#tag, #tag_number

Methods inherited from ApplicationRecord

alias_association, convert_labware_to_receptacle_for, find_by_id_or_name, find_by_id_or_name!

Methods included from Squishify

extended

Instance Method Details

#failed_downstream!Object



10
11
12
# File 'app/models/illumina_htp/requests/shared_library_prep.rb', line 10

def failed_downstream!
  retrospective_fail! if passed?
end

#target_tubeObject



6
7
8
# File 'app/models/illumina_htp/requests/shared_library_prep.rb', line 6

def target_tube
  @target_tube ||= next_requests.detect(&:target_tube).try(:target_tube)
end

#update_pool_information(pool_information) ⇒ Object

Ensure that the bait library information is also included in the pool information.



15
16
17
18
# File 'app/models/illumina_htp/requests/shared_library_prep.rb', line 15

def update_pool_information(pool_information)
  super
  pool_information[:target_tube_purpose] = target_tube.purpose.uuid if target_tube
end