Class ProbeLoading
- java.lang.Object
-
- ubic.gemma.model.analysis.expression.pca.ProbeLoading
-
- All Implemented Interfaces:
Serializable
public class ProbeLoading extends Object implements Serializable
Only stored for some of the probes (e.g. the top ones)- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ProbeLoading.Factory
-
Constructor Summary
Constructors Constructor Description ProbeLoading()
No-arg constructor added to satisfy javabean contract
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object object)
Integer
getComponentNumber()
Long
getId()
Double
getLoading()
Integer
getLoadingRank()
CompositeSequence
getProbe()
int
hashCode()
void
setComponentNumber(Integer componentNumber)
void
setId(Long id)
void
setLoading(Double loading)
void
setLoadingRank(Integer loadingRank)
void
setProbe(CompositeSequence probe)
-
-
-
Method Detail
-
getComponentNumber
public Integer getComponentNumber()
- Returns:
- Which component this loading is for (the first component is number 1)
-
setComponentNumber
public void setComponentNumber(Integer componentNumber)
-
getId
public Long getId()
-
setId
public void setId(Long id)
-
getLoading
public Double getLoading()
- Returns:
- The raw loading value from the SVD. This corresponds to the values in the left singular vector.
-
setLoading
public void setLoading(Double loading)
-
getLoadingRank
public Integer getLoadingRank()
- Returns:
- The rank of this loading among the ones which were stored for the component
-
setLoadingRank
public void setLoadingRank(Integer loadingRank)
-
getProbe
public CompositeSequence getProbe()
-
setProbe
public void setProbe(CompositeSequence probe)
-
hashCode
public int hashCode()
-
-