Skip to content

Commit

Permalink
Update GenericAssayEnrichment.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Djokovic0311 committed Aug 17, 2023
1 parent 24158cd commit b51a6e3
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,16 @@ public HashMap<String, String> getGenericEntityMetaProperties() {
public void setGenericEntityMetaProperties(HashMap<String, String> genericEntityMetaProperties) {
this.genericEntityMetaProperties = genericEntityMetaProperties;
}

public static int compare(GenericAssayEnrichment c1, GenericAssayEnrichment c2) {
return c1.getpValue().compareTo(c2.getpValue());
}

public BigDecimal getqValue() {
return qValue;
}

public void setqValue(BigDecimal qValue) {
this.qValue = qValue;
}

public static int compare(GenericAssayEnrichment c1, GenericAssayEnrichment c2) {
return c1.getpValue().compareTo(c2.getpValue());
}
}

0 comments on commit b51a6e3

Please sign in to comment.