Skip to content

Commit

Permalink
add structural variant count back to study mapper (#10582)
Browse files Browse the repository at this point in the history
  • Loading branch information
uklineale authored Jan 30, 2024
1 parent 3cfca1e commit 6a0912a
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
COUNT(CASE WHEN sample_list.STABLE_ID = CONCAT(cancer_study.CANCER_STUDY_IDENTIFIER,'_protein_quantification') THEN 1 ELSE NULL END) AS massSpectrometrySampleCount,
COUNT(CASE WHEN sample_list.STABLE_ID = CONCAT(cancer_study.CANCER_STUDY_IDENTIFIER,'_3way_complete') THEN 1 ELSE NULL END) AS completeSampleCount,
IFNULL(treatment.count, 0 ) as treatmentCount,
COALESCE(structural_variant.count, 0) as structuralVariantCount,
type_of_cancer.TYPE_OF_CANCER_ID AS "typeOfCancer.typeOfCancerId"
<if test="projection == 'SUMMARY' || projection == 'DETAILED'">
,
Expand Down

0 comments on commit 6a0912a

Please sign in to comment.