Class Baseline
- java.lang.Object
-
- ubic.gemma.model.analysis.expression.diff.Baseline
-
public class Baseline extends Object
Represents a baseline for a single factor or an interaction of factors.This class is proxy-safe as long as
hashCode()
isn't being used.- Author:
- poirigui
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Baseline
categorical(FactorValue fv)
Create a baseline for a single categorical factor.boolean
equals(Object obj)
FactorValue
getFactorValue()
FactorValue
getSecondFactorValue()
int
hashCode()
static Baseline
interaction(FactorValue fv1, FactorValue fv2)
Create a baseline for an interaction of factors.boolean
isInteraction()
String
toString()
-
-
-
Method Detail
-
categorical
public static Baseline categorical(FactorValue fv)
Create a baseline for a single categorical factor.
-
interaction
public static Baseline interaction(FactorValue fv1, FactorValue fv2)
Create a baseline for an interaction of factors.
-
getFactorValue
public FactorValue getFactorValue()
-
getSecondFactorValue
@Nullable public FactorValue getSecondFactorValue()
-
isInteraction
public boolean isInteraction()
-
-