Class SupportDetails
- java.lang.Object
-
- ubic.gemma.model.analysis.expression.coexpression.IdArray
-
- ubic.gemma.model.analysis.expression.coexpression.SupportDetails
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
HumanCoexpressionSupportDetailsImpl,MouseCoexpressionSupportDetailsImpl,OtherCoexpressionSupportDetailsImpl,RatCoexpressionSupportDetailsImpl
public abstract class SupportDetails extends IdArray
Represents the datasets in which a link was found in ("supported").- Author:
- Paul
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SupportDetails(Long firstGene, Long secondGene, Boolean isPositive)Note that the gene information and isPositive is only used for bookkeeping during creation; it is not part of the persistent entity.SupportDetails(Gene firstGene, Gene secondGene, Boolean isPositive)Note that the gene information and isPositive is only used for bookkeeping during creation; it is not part of the persistent entity.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)LonggetId()inthashCode()voidsetId(Long id)StringtoString()-
Methods inherited from class ubic.gemma.model.analysis.expression.coexpression.IdArray
addEntities, addEntity, and, andSet, getBytes, getIds, getIdsSet, getNumIds, isIncluded, removeEntity, setBytes
-
-
-
-
Constructor Detail
-
SupportDetails
public SupportDetails(Gene firstGene, Gene secondGene, Boolean isPositive)
Note that the gene information and isPositive is only used for bookkeeping during creation; it is not part of the persistent entity.- Parameters:
firstGene- first geneisPositive- value of isPositivesecondGene- second gene
-
SupportDetails
public SupportDetails(Long firstGene, Long secondGene, Boolean isPositive)
Note that the gene information and isPositive is only used for bookkeeping during creation; it is not part of the persistent entity. Used by LinkCreator.- Parameters:
firstGene- first geneisPositive- value of isPositivesecondGene- second gene
-
-