Class GeneDifferentialExpressionMetaAnalysis
- java.lang.Object
-
- ubic.gemma.model.common.AbstractDescribable
-
- ubic.gemma.model.analysis.Analysis
-
- ubic.gemma.model.analysis.expression.ExpressionAnalysis
-
- ubic.gemma.model.analysis.expression.diff.GeneDifferentialExpressionMetaAnalysis
-
- All Implemented Interfaces:
gemma.gsec.model.Securable
,Serializable
,Securable
,Describable
,Identifiable
public class GeneDifferentialExpressionMetaAnalysis extends ExpressionAnalysis implements Securable
Represents an analysis that combines the results of other analyses of differential expression.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
GeneDifferentialExpressionMetaAnalysis.Factory
-
Constructor Summary
Constructors Constructor Description GeneDifferentialExpressionMetaAnalysis()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Integer
getNumGenesAnalyzed()
Double
getQvalueThresholdForStorage()
Set<GeneDifferentialExpressionMetaAnalysisResult>
getResults()
Set<ExpressionAnalysisResultSet>
getResultSetsIncluded()
void
setNumGenesAnalyzed(Integer numGenesAnalyzed)
void
setQvalueThresholdForStorage(Double qvalueThresholdForStorage)
void
setResults(Set<GeneDifferentialExpressionMetaAnalysisResult> results)
void
setResultSetsIncluded(Set<ExpressionAnalysisResultSet> resultSetsIncluded)
-
Methods inherited from class ubic.gemma.model.analysis.Analysis
getProtocol, setProtocol
-
Methods inherited from class ubic.gemma.model.common.AbstractDescribable
equals, getDescription, getId, getName, hashCode, setDescription, setId, setName, toString
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface ubic.gemma.model.common.Identifiable
getId
-
-
-
-
Method Detail
-
getNumGenesAnalyzed
public Integer getNumGenesAnalyzed()
- Returns:
- How many genes were included in the meta-analysis. This does not mean that all genes were analyzed in all the experiments.
-
setNumGenesAnalyzed
public void setNumGenesAnalyzed(Integer numGenesAnalyzed)
-
getQvalueThresholdForStorage
public Double getQvalueThresholdForStorage()
- Returns:
- The threshold, if any, used to determine which of the metaAnalysis results are persisted to the system.
-
setQvalueThresholdForStorage
public void setQvalueThresholdForStorage(Double qvalueThresholdForStorage)
-
getResults
public Set<GeneDifferentialExpressionMetaAnalysisResult> getResults()
-
setResults
public void setResults(Set<GeneDifferentialExpressionMetaAnalysisResult> results)
-
getResultSetsIncluded
public Set<ExpressionAnalysisResultSet> getResultSetsIncluded()
-
setResultSetsIncluded
public void setResultSetsIncluded(Set<ExpressionAnalysisResultSet> resultSetsIncluded)
-
-