diff --git a/src/main/resources/org/cbioportal/persistence/mybatis/StudyMapper.xml b/src/main/resources/org/cbioportal/persistence/mybatis/StudyMapper.xml index 76f7dfed0dd..c057cb5cfd9 100644 --- a/src/main/resources/org/cbioportal/persistence/mybatis/StudyMapper.xml +++ b/src/main/resources/org/cbioportal/persistence/mybatis/StudyMapper.xml @@ -35,9 +35,14 @@ 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, - - - + type_of_cancer.TYPE_OF_CANCER_ID AS "typeOfCancer.typeOfCancerId" + + , + type_of_cancer.NAME AS "typeOfCancer.name", + type_of_cancer.DEDICATED_COLOR AS "typeOfCancer.dedicatedColor", + type_of_cancer.SHORT_NAME AS "typeOfCancer.shortName", + type_of_cancer.PARENT AS "typeOfCancer.parent" +