Class GeneCoexpressionNodeDegree
- java.lang.Object
-
- ubic.gemma.model.association.coexpression.GeneCoexpressionNodeDegree
-
- All Implemented Interfaces:
Serializable
,Identifiable
public class GeneCoexpressionNodeDegree extends Object implements Identifiable, Serializable
Represents the coexpression node degree for a gene summarized across experiments, at each level of support.- Author:
- paul
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
GeneCoexpressionNodeDegree.Factory
-
Constructor Summary
Constructors Constructor Description GeneCoexpressionNodeDegree()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
Long
getGeneId()
Long
getId()
byte[]
getLinkCountsNegative()
byte[]
getLinkCountsPositive()
byte[]
getRelativeLinkRanksNegative()
byte[]
getRelativeLinkRanksPositive()
int
hashCode()
void
setGeneId(Long geneId)
void
setId(Long id)
void
setLinkCountsNegative(byte[] linkCountsNegative)
void
setLinkCountsPositive(byte[] linkCountsPositive)
void
setRelativeLinkRanksNegative(byte[] relativeLinkRanksNegative)
void
setRelativeLinkRanksPositive(byte[] relativeLinkRanksPositive)
-
-
-
Method Detail
-
getGeneId
public Long getGeneId()
-
setGeneId
public void setGeneId(Long geneId)
-
getId
public Long getId()
- Specified by:
getId
in interfaceIdentifiable
-
setId
public void setId(Long id)
-
getLinkCountsNegative
public byte[] getLinkCountsNegative()
-
setLinkCountsNegative
public void setLinkCountsNegative(byte[] linkCountsNegative)
-
getLinkCountsPositive
public byte[] getLinkCountsPositive()
-
setLinkCountsPositive
public void setLinkCountsPositive(byte[] linkCountsPositive)
-
getRelativeLinkRanksNegative
public byte[] getRelativeLinkRanksNegative()
- Returns:
- Note that these values are for support thresholds, not support levels - so "at or above" the given threshold support.
-
setRelativeLinkRanksNegative
public void setRelativeLinkRanksNegative(byte[] relativeLinkRanksNegative)
-
getRelativeLinkRanksPositive
public byte[] getRelativeLinkRanksPositive()
- Returns:
- Note that these values are for support thresholds, not support levels - so "at or above" the given threshold support.
-
setRelativeLinkRanksPositive
public void setRelativeLinkRanksPositive(byte[] relativeLinkRanksPositive)
-
-