-
Notifications
You must be signed in to change notification settings - Fork 34
TASK-7645 - Integrated Clinical Preprocessing, Variant Assessment, and Reporting #302
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
047dede
models: changes to ClinicalVariant data model, #TASK-7645
pfurio ff0d3e3
models: improve MiniPubmed data model, #TASK-7645
pfurio 121fd1b
models: add a few more fields to Clinical data model, #TASK-7645
pfurio 3c52ef5
Merge branch 'develop' into TASK-7645
jtarraga 0099066
Merge branch 'develop' into TASK-7645
pfurio da6bf9c
Merge branch 'TASK-7645' of https://github.com/opencb/biodata into TA…
jtarraga 8130c07
Merge branch 'develop' into TASK-7645
pfurio af9b87c
Merge branch 'TASK-7645' of https://github.com/opencb/biodata into TA…
jtarraga d528720
Merge branch 'develop' into TASK-7645
pfurio e1275d4
models: rename REVIEW_REQUESTED variant status, #TASK-7645
pfurio 8181e59
models: add version to ClinicalVariant, #TASK-7645
pfurio dfd30b1
Merge branch 'develop' into TASK-7645
pfurio 9aa283c
Merge branch 'develop' into TASK-7645
pfurio 23836c6
models: first revision fixes, #TASK-7645
pfurio acdb0df
models: revision changes 2, #TASK-7645
pfurio 6708465
models: add condition to deprecated setter, #TASK-7645
pfurio d111e7a
models: remove deprecated getter/setter, #TASK-7645
pfurio File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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
56 changes: 56 additions & 0 deletions
56
...rc/main/java/org/opencb/biodata/models/clinical/interpretation/ClinicalVariantFilter.java
This file contains hidden or 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,56 @@ | ||
| package org.opencb.biodata.models.clinical.interpretation; | ||
|
|
||
| import java.util.Map; | ||
|
|
||
| public class ClinicalVariantFilter { | ||
|
|
||
| private Map<String, Object> query; | ||
| private String opencgaVersion; | ||
| private String cellbaseVersion; | ||
|
|
||
| public ClinicalVariantFilter() { | ||
| } | ||
|
|
||
| public ClinicalVariantFilter(Map<String, Object> query, String opencgaVersion, String cellbaseVersion) { | ||
| this.query = query; | ||
| this.opencgaVersion = opencgaVersion; | ||
| this.cellbaseVersion = cellbaseVersion; | ||
| } | ||
|
|
||
| @Override | ||
| public String toString() { | ||
| final StringBuilder sb = new StringBuilder("ClinicalVariantFilter{"); | ||
| sb.append("query=").append(query); | ||
| sb.append(", opencgaVersion='").append(opencgaVersion).append('\''); | ||
| sb.append(", cellbaseVersion='").append(cellbaseVersion).append('\''); | ||
| sb.append('}'); | ||
| return sb.toString(); | ||
| } | ||
|
|
||
| public Map<String, Object> getQuery() { | ||
| return query; | ||
| } | ||
|
|
||
| public ClinicalVariantFilter setQuery(Map<String, Object> query) { | ||
| this.query = query; | ||
| return this; | ||
| } | ||
|
|
||
| public String getOpencgaVersion() { | ||
| return opencgaVersion; | ||
| } | ||
|
|
||
| public ClinicalVariantFilter setOpencgaVersion(String opencgaVersion) { | ||
| this.opencgaVersion = opencgaVersion; | ||
| return this; | ||
| } | ||
|
|
||
| public String getCellbaseVersion() { | ||
| return cellbaseVersion; | ||
| } | ||
|
|
||
| public ClinicalVariantFilter setCellbaseVersion(String cellbaseVersion) { | ||
| this.cellbaseVersion = cellbaseVersion; | ||
| return this; | ||
| } | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.