Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added raw schema link between Sample hub to ExternalSample hub #7

Merged
merged 1 commit into from
Jan 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions orcavault/models/raw/link_internal_to_external_sample.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
with source as (

select sample_id, external_sample_id from {{ source('ods', 'data_portal_labmetadata') }}
union
select sample_id, external_sample_id from {{ source('ods', 'data_portal_limsrow') }}
union
select sample_id, external_sample_id from {{ source('ods', 'metadata_manager_sample') }}

),

cleaned as (

select
distinct sample_id, trim(external_sample_id) as external_sample_id
from
source
where
(sample_id is not null and sample_id <> '') and
(external_sample_id is not null and external_sample_id <> '')

),

transformed as (

select
encode(sha256(cast(external_sample_id as bytea)), 'hex') as external_sample_hk,
encode(sha256(cast(sample_id as bytea)), 'hex') as sample_hk,
cast('{{ run_started_at }}' as timestamptz) as load_datetime,
(select 'lab') as record_source
from
cleaned

),

final as (

select
encode(sha256(concat(external_sample_hk, sample_hk)::bytea), 'hex') as internal_external_sample_hk,
external_sample_hk,
sample_hk,
load_datetime,
record_source
from
transformed

)

select * from final
26 changes: 26 additions & 0 deletions orcavault/models/raw/link_schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -235,3 +235,29 @@ models:
data_type: timestamptz
- name: record_source
data_type: varchar(255)

- name: link_internal_to_external_sample
config:
contract: { enforced: true }
constraints:
- type: primary_key
columns: [ internal_external_sample_hk ]
- type: foreign_key
columns: [ external_sample_hk ]
to: ref('hub_external_sample')
to_columns: [ external_sample_hk ]
- type: foreign_key
columns: [ sample_hk ]
to: ref('hub_sample')
to_columns: [ sample_hk ]
columns:
- name: internal_external_sample_hk
data_type: char(64)
- name: external_sample_hk
data_type: char(64)
- name: sample_hk
data_type: char(64)
- name: load_datetime
data_type: timestamptz
- name: record_source
data_type: varchar(255)
Loading