From 13c8082a7d4461acd81927e14ad1b8a93e1e6b33 Mon Sep 17 00:00:00 2001 From: Marina Gourtovaia Date: Wed, 9 Oct 2024 15:42:00 +0100 Subject: [PATCH] Added new delegated methods, sample_uuid and sample_lims --- Changes | 3 +++ lib/WTSI/DNAP/Warehouse/Schema/Result/IseqFlowcell.pm | 2 ++ 2 files changed, 5 insertions(+) diff --git a/Changes b/Changes index 245f027..980c101 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,9 @@ LIST OF CHANGES --------------- + - Added new delegated methods to WTSI::DNAP::Warehouse::Schema::Result::IseqFlowcell, + sample_uuid and sample_lims. + release 6.33.1 (2024-10-04) - Added .github/dependabot.yml file to auto-update GitHub actions - GitHub CI - updated deprecated v2 runner action to v3 diff --git a/lib/WTSI/DNAP/Warehouse/Schema/Result/IseqFlowcell.pm b/lib/WTSI/DNAP/Warehouse/Schema/Result/IseqFlowcell.pm index 4638776..f665d17 100644 --- a/lib/WTSI/DNAP/Warehouse/Schema/Result/IseqFlowcell.pm +++ b/lib/WTSI/DNAP/Warehouse/Schema/Result/IseqFlowcell.pm @@ -601,7 +601,9 @@ Readonly my @USER_ROLES => qw/manager follower owner/; Readonly my %DELEGATION_TO_SAMPLE => { 'sample_id' => 'id_sample_lims', + 'sample_uuid' => 'uuid_sample_lims', 'sample_name' => 'name', + 'sample_lims' => 'id_lims', 'sample_reference_genome' => 'reference_genome', 'organism' => 'organism', 'sample_accession_number' => 'accession_number',