Skip to content

Commit

Permalink
Remove CH code from legacy class and remove material_view.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
haynescd committed Dec 18, 2024
1 parent dfa4740 commit 5fa95bc
Show file tree
Hide file tree
Showing 8 changed files with 244 additions and 369 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,4 @@ Pair<List<CopyNumberCountByGene>, Long> getPatientCnaGeneCounts(List<MolecularPr
boolean includeFrequency,
boolean includeMissingAlterationsFromGenePanel,
AlterationFilter alterationFilter);

List<AlterationCountByGene> getMutatedGenes(StudyViewFilterContext studyViewFilterContext) throws StudyNotFoundException;
List<CopyNumberCountByGene> getCnaGenes(StudyViewFilterContext studyViewFilterContext) throws StudyNotFoundException;

List<AlterationCountByGene> getStructuralVariantGenes(StudyViewFilterContext studyViewFilterContext) throws StudyNotFoundException;

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package org.cbioportal.service.alteration;

import org.cbioportal.model.AlterationCountByGene;
import org.cbioportal.model.CopyNumberCountByGene;
import org.cbioportal.model.StudyViewFilterContext;
import org.cbioportal.service.exception.StudyNotFoundException;

import java.util.List;

public interface AlterationCountByGeneService {
List<AlterationCountByGene> getMutatedGenes(StudyViewFilterContext studyViewFilterContext) throws StudyNotFoundException;
List<CopyNumberCountByGene> getCnaGenes(StudyViewFilterContext studyViewFilterContext) throws StudyNotFoundException;
List<AlterationCountByGene> getStructuralVariantGenes(StudyViewFilterContext studyViewFilterContext) throws StudyNotFoundException;
}
Loading

0 comments on commit 5fa95bc

Please sign in to comment.