-
Notifications
You must be signed in to change notification settings - Fork 498
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into fix-10313
- Loading branch information
Showing
16 changed files
with
578 additions
and
97 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
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
35 changes: 35 additions & 0 deletions
35
model/src/main/java/org/cbioportal/model/GenomicDataCountItem.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,35 @@ | ||
package org.cbioportal.model; | ||
|
||
import java.io.Serializable; | ||
import java.util.List; | ||
|
||
public class GenomicDataCountItem implements Serializable { | ||
|
||
private String hugoGeneSymbol; | ||
private String profileType; | ||
private List<GenomicDataCount> counts; | ||
|
||
public String getHugoGeneSymbol() { | ||
return hugoGeneSymbol; | ||
} | ||
|
||
public void setHugoGeneSymbol(String hugoGeneSymbol) { | ||
this.hugoGeneSymbol = hugoGeneSymbol; | ||
} | ||
|
||
public String getProfileType() { | ||
return profileType; | ||
} | ||
|
||
public void setProfileType(String profileType) { | ||
this.profileType = profileType; | ||
} | ||
|
||
public List<GenomicDataCount> getCounts() { | ||
return counts; | ||
} | ||
|
||
public void setCounts(List<GenomicDataCount> counts) { | ||
this.counts = counts; | ||
} | ||
} |
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
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
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.