Skip to content

Commit

Permalink
Update rfc80 poc (#11298)
Browse files Browse the repository at this point in the history
* Remove CH code from legacy class and remove material_view.sql

* Update CH Test container to not use material_view.sql

---------

Co-authored-by: haynescd <[email protected]>
  • Loading branch information
haynescd and haynescd authored Dec 19, 2024
1 parent 6d58f8f commit 8703b87
Show file tree
Hide file tree
Showing 9 changed files with 244 additions and 371 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 8703b87

Please sign in to comment.