-
Notifications
You must be signed in to change notification settings - Fork 605
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement custom-data-bin-counts endpoint (#10827)
* Implement custom-data-bin-counts associated filter * Create StudyViewFilterContext and Helper --------- Co-authored-by: Bryan Lai <[email protected]> Co-authored-by: Charles Haynes <[email protected]>
- Loading branch information
1 parent
6ff724d
commit ff7ecbc
Showing
31 changed files
with
788 additions
and
571 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
src/main/java/org/cbioportal/model/StudyViewFilterContext.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package org.cbioportal.model; | ||
|
||
import org.cbioportal.web.parameter.CustomSampleIdentifier; | ||
import org.cbioportal.web.parameter.StudyViewFilter; | ||
|
||
import java.util.List; | ||
|
||
public record StudyViewFilterContext( StudyViewFilter studyViewFilter, | ||
List<CustomSampleIdentifier> customDataFilterSamples) { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.