Skip to content

Commit

Permalink
use base64 encoded columns for unique sample and patient keys
Browse files Browse the repository at this point in the history
  • Loading branch information
onursumer authored and jagnathan committed Nov 8, 2023
1 parent 2765929 commit 3f7afd4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
patient_stable_id as patientStableId,
sample_stable_id as stableId,
cancer_study_identifier as cancerStudyIdentifier,
base64Encode(sample_unique_id) as uniqueSampleKey,
base64Encode(patient_unique_id) as uniquePatientKey
sample_unique_id_base64 as uniqueSampleKey,
patient_unique_id_base64 as uniquePatientKey
FROM sample
WHERE sample_unique_id IN (
<!-- Study View Filter-->
Expand Down

0 comments on commit 3f7afd4

Please sign in to comment.