forked from genome-nexus/genome-nexus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request genome-nexus#746 from leexgh/intergenic-variant
Add intergenicConsequnceSummaries and variant classification in annotationSummary
- Loading branch information
Showing
4 changed files
with
115 additions
and
15 deletions.
There are no files selected for viewing
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
53 changes: 53 additions & 0 deletions
53
model/src/main/java/org/cbioportal/genome_nexus/model/IntergenicConsequenceSummary.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,53 @@ | ||
package org.cbioportal.genome_nexus.model; | ||
|
||
import java.util.List; | ||
|
||
public class IntergenicConsequenceSummary { | ||
private String impact; | ||
|
||
public String getImpact() | ||
{ | ||
return impact; | ||
} | ||
|
||
public void setImpact(String impact) | ||
{ | ||
this.impact = impact; | ||
} | ||
|
||
private String variantAllele; | ||
|
||
public String getVariantAllele() | ||
{ | ||
return variantAllele; | ||
} | ||
|
||
public void setVariantAllele(String variantAllele) | ||
{ | ||
this.variantAllele = variantAllele; | ||
} | ||
|
||
private List<String> consequenceTerms; | ||
|
||
public List<String> getConsequenceTerms() | ||
{ | ||
return consequenceTerms; | ||
} | ||
|
||
public void setConsequenceTerms(List<String> consequenceTerms) | ||
{ | ||
this.consequenceTerms = consequenceTerms; | ||
} | ||
|
||
private String variantClassification; | ||
|
||
public String getVariantClassification() | ||
{ | ||
return variantClassification; | ||
} | ||
|
||
public void setVariantClassification(String variantClassification) | ||
{ | ||
this.variantClassification = variantClassification; | ||
} | ||
} |
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