Skip to content

Commit

Permalink
replace sample_mv references with sample_derived (#10880)
Browse files Browse the repository at this point in the history
  • Loading branch information
onursumer authored and haynescd committed Nov 24, 2024
1 parent a569ec6 commit 783b608
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<foreach item="listGroup" collection="studyViewFilter.caseLists" separator="INTERSECT">
SELECT sample_unique_id
FROM sample_list_list sll
LEFT JOIN sample_mv s ON sll.sample_id=s.internal_id
LEFT JOIN sample_derived s ON sll.sample_id=s.internal_id
LEFT JOIN sample_list sl on sll.list_id=sl.list_id
WHERE
<foreach item="list" collection="listGroup" separator="OR">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@
REPLACE(stable_id, CONCAT(cancer_study_identifier, '_'), '') AS value,
count(sample_id) AS count
FROM sample_list_list sll
LEFT JOIN sample_mv s ON sll.sample_id=s.internal_id
LEFT JOIN sample_derived s ON sll.sample_id=s.internal_id
LEFT JOIN sample_list sl on sll.list_id=sl.list_id
<where>
sample_unique_id IN ( <include refid="sampleUniqueIdsFromStudyViewFilter"/>)
Expand Down

0 comments on commit 783b608

Please sign in to comment.