-
Notifications
You must be signed in to change notification settings - Fork 497
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
Molecular-profile-counts service implementation #10840
Conversation
8c6ad34
to
1eb3cfc
Compare
src/main/java/org/cbioportal/persistence/StudyViewRepository.java
Outdated
Show resolved
Hide resolved
src/main/java/org/cbioportal/persistence/StudyViewRepository.java
Outdated
Show resolved
Hide resolved
src/main/java/org/cbioportal/persistence/mybatisclickhouse/StudyViewMapper.java
Outdated
Show resolved
Hide resolved
SELECT sample_mv.sample_unique_id | ||
FROM sample_profile | ||
JOIN genetic_profile gp ON sample_profile.genetic_profile_id = gp.genetic_profile_id | ||
JOIN cancer_study cs ON gp.cancer_study_id = cs.cancer_study_id | ||
JOIN sample_mv on sample_profile.sample_id = sample_mv.internal_id |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The genomic_event_derived table has this info without the need of a join.
sample_mv.cancer_study_identifier IN | ||
<foreach item="studyId" collection="studyViewFilter.studyIds" open="(" separator="," close=")"> | ||
#{studyId} | ||
</foreach> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you need this filter? Since the filter for studyIds are above?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@haynescd i m erged this PR but made follow up issues for this and the above comment
21bb5e4
to
9284c92
Compare
No description provided.