diff --git a/model/src/main/java/org/cbioportal/model/GenericAssayEnrichment.java b/model/src/main/java/org/cbioportal/model/GenericAssayEnrichment.java index 074aa8926d9..02491c2221b 100644 --- a/model/src/main/java/org/cbioportal/model/GenericAssayEnrichment.java +++ b/model/src/main/java/org/cbioportal/model/GenericAssayEnrichment.java @@ -40,10 +40,7 @@ public HashMap getGenericEntityMetaProperties() { public void setGenericEntityMetaProperties(HashMap genericEntityMetaProperties) { this.genericEntityMetaProperties = genericEntityMetaProperties; } - - public static int compare(GenericAssayEnrichment c1, GenericAssayEnrichment c2) { - return c1.getpValue().compareTo(c2.getpValue()); - } + public BigDecimal getqValue() { return qValue; } @@ -51,4 +48,8 @@ public BigDecimal getqValue() { public void setqValue(BigDecimal qValue) { this.qValue = qValue; } + + public static int compare(GenericAssayEnrichment c1, GenericAssayEnrichment c2) { + return c1.getpValue().compareTo(c2.getpValue()); + } }