Class HitListSize
- java.lang.Object
-
- ubic.gemma.model.common.AbstractIdentifiable
-
- ubic.gemma.model.analysis.expression.diff.HitListSize
-
- All Implemented Interfaces:
Identifiable
public class HitListSize extends AbstractIdentifiable
The number of probes meeting a given q-value threshold in the result set.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
HitListSize.Factory
-
Constructor Summary
Constructors Constructor Description HitListSize()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object object)
Important note: Two objects with the same class and non-null ID must be considered equal.Direction
getDirection()
Integer
getNumberOfGenes()
Integer
getNumberOfProbes()
Double
getThresholdQvalue()
int
hashCode()
Returns a hash code based on this entity's identifiers.void
setDirection(Direction direction)
void
setNumberOfGenes(Integer numberOfGenes)
void
setNumberOfProbes(Integer numberOfProbes)
void
setThresholdQvalue(Double thresholdQvalue)
-
Methods inherited from class ubic.gemma.model.common.AbstractIdentifiable
getId, setId, toString
-
-
-
-
Method Detail
-
getDirection
public Direction getDirection()
-
setDirection
public void setDirection(Direction direction)
-
getNumberOfGenes
public Integer getNumberOfGenes()
- Returns:
- Number of genes meeting the threshold.
-
setNumberOfGenes
public void setNumberOfGenes(Integer numberOfGenes)
-
getNumberOfProbes
public Integer getNumberOfProbes()
-
setNumberOfProbes
public void setNumberOfProbes(Integer numberOfProbes)
-
getThresholdQvalue
public Double getThresholdQvalue()
-
setThresholdQvalue
public void setThresholdQvalue(Double thresholdQvalue)
-
hashCode
public int hashCode()
Returns a hash code based on this entity's identifiers.- Specified by:
hashCode
in classAbstractIdentifiable
-
equals
public boolean equals(Object object)
Description copied from class:AbstractIdentifiable
Important note: Two objects with the same class and non-null ID must be considered equal. If one or both IDs are nulls, the rest of the state can be used to determine equality.- Specified by:
equals
in classAbstractIdentifiable
- Parameters:
object
- the object to compare with- Returns:
true
if the argument is an HitListSize instance and all identifiers for this entity equal the identifiers of the argument entity. Returnsfalse
otherwise.
-
-