Class HeatmapDataValueObject.ColumnMeta

java.lang.Object
ubic.gemma.rest.HeatmapDataValueObject.ColumnMeta
Enclosing class:
HeatmapDataValueObject

public static class HeatmapDataValueObject.ColumnMeta extends Object
Author:
claude
  • Constructor Details

    • ColumnMeta

      public ColumnMeta()
  • Method Details

    • getBioAssayId

      @Nullable public Long getBioAssayId()
    • getBioMaterialId

      @Nullable public Long getBioMaterialId()
    • getName

      @Nullable public String getName()
    • getOutlier

      @Nullable public Boolean getOutlier()
      Tri-state outlier flag — boxed so the producer can leave it null when unknown.
    • getFactorValueIds

      @Nullable public Map<Long,Long> getFactorValueIds()
      factorId -> factorValueId. Categorical factors only. Continuous factor values are absent here; look up HeatmapDataValueObject.FactorEntry.getMeasurements() by bioAssayId instead. null / empty when the producer is not attaching a factor-design context.
    • setBioAssayId

      public void setBioAssayId(@Nullable Long bioAssayId)
    • setBioMaterialId

      public void setBioMaterialId(@Nullable Long bioMaterialId)
    • setName

      public void setName(@Nullable String name)
    • setOutlier

      public void setOutlier(@Nullable Boolean outlier)
      Tri-state outlier flag — boxed so the producer can leave it null when unknown.
    • setFactorValueIds

      public void setFactorValueIds(@Nullable Map<Long,Long> factorValueIds)
      factorId -> factorValueId. Categorical factors only. Continuous factor values are absent here; look up HeatmapDataValueObject.FactorEntry.getMeasurements() by bioAssayId instead. null / empty when the producer is not attaching a factor-design context.