Class SampleCoexpressionMatrix
- java.lang.Object
-
- ubic.gemma.model.common.AbstractIdentifiable
-
- ubic.gemma.model.analysis.expression.coexpression.SampleCoexpressionMatrix
-
- All Implemented Interfaces:
Identifiable
public class SampleCoexpressionMatrix extends AbstractIdentifiable
Holds the data of the sample coexpression matrix
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
SampleCoexpressionMatrix.Factory
-
Constructor Summary
Constructors Constructor Description SampleCoexpressionMatrix()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object object)
Returnstrue
if the argument is an SampleCoexpressionMatrix instance and all identifiers for this entity equal the identifiers of the argument entity.BioAssayDimension
getBioAssayDimension()
byte[]
getCoexpressionMatrix()
int
hashCode()
Returns a hash code based on this entity's identifiers.void
setBioAssayDimension(BioAssayDimension bioAssayDimension)
void
setCoexpressionMatrix(byte[] coexpressionMatrix)
-
Methods inherited from class ubic.gemma.model.common.AbstractIdentifiable
getId, setId, toString
-
-
-
-
Method Detail
-
getBioAssayDimension
public BioAssayDimension getBioAssayDimension()
-
setBioAssayDimension
public void setBioAssayDimension(BioAssayDimension bioAssayDimension)
-
getCoexpressionMatrix
public byte[] getCoexpressionMatrix()
-
setCoexpressionMatrix
public void setCoexpressionMatrix(byte[] coexpressionMatrix)
-
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)
Returnstrue
if the argument is an SampleCoexpressionMatrix instance and all identifiers for this entity equal the identifiers of the argument entity. Returnsfalse
otherwise.- Specified by:
equals
in classAbstractIdentifiable
-
-