You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following sample_list query returns a couple counts for null list names. Need to figure out why that is.
SELECT
name AS label,
REPLACE(stable_id, CONCAT(cancer_study_identifier, '_'), '') AS value,
count(sample_id) AS count
FROM sample_list_list sll
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 (
SELECT sample_unique_id
FROM sample_derived
WHERE cancer_study_identifier IN
(
'brca_tcga_pan_can_atlas_2018'
,
'gbm_tcga_pan_can_atlas_2018'
)
)
GROUP BY s.cancer_study_identifier, sl.stable_id, sl.name
@gblaih once you get access to the VPN (and then the database i gave you credentials for), try to execute the above query against that database. You should see a result with null values:
The task is to analyze WHY that row appears. It has to do with the LEFT joins. Probably an issue with data.
The following sample_list query returns a couple counts for null list names. Need to figure out why that is.
here is api
The text was updated successfully, but these errors were encountered: