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

Fix sample_mv references #10880

Merged
merged 1 commit into from
Jul 3, 2024
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
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
Loading