Interface GeneCoexpressionSearchService
-
- All Known Implementing Classes:
GeneCoexpressionSearchServiceImpl
public interface GeneCoexpressionSearchService
Provides access to Gene2Gene links. The use of this service provides 'high-level' access to functionality in the Gene2GeneCoexpressionService.- Author:
- Paul
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CoexpressionMetaValueObject
coexpressionSearch(Collection<Long> inputEeIds, Collection<Long> genes, int stringency, int maxResults, boolean queryGenesOnly)
CoexpressionMetaValueObject
coexpressionSearchQuick(Collection<Long> inputEeIds, Collection<Long> genes, int stringency, int maxResults, boolean queryGenesOnly)
Skips some of the postprocessing steps, use in situations where raw speed is more important than details.
-
-
-
Method Detail
-
coexpressionSearch
CoexpressionMetaValueObject coexpressionSearch(Collection<Long> inputEeIds, Collection<Long> genes, int stringency, int maxResults, boolean queryGenesOnly)
- Parameters:
inputEeIds
- Expression experiments ids to consider; if null, use all available data.genes
- Genes to find coexpression forstringency
- Minimum support levelmaxResults
- per genequeryGenesOnly
- Whether to return only coexpression among the query genes (assuming there are more than one). Otherwise, coexpression with genes 'external' to the queries will be returned.- Returns:
- CoexpressionMetaValueObject in which the results are already populated and sorted.
-
coexpressionSearchQuick
CoexpressionMetaValueObject coexpressionSearchQuick(Collection<Long> inputEeIds, Collection<Long> genes, int stringency, int maxResults, boolean queryGenesOnly)
Skips some of the postprocessing steps, use in situations where raw speed is more important than details.- Parameters:
inputEeIds
- Expression experiments ids to consider; if null or empty, use all available data.genes
- genesmaxResults
- max resultsqueryGenesOnly
- query genes onlystringency
- stringency- Returns:
- CoexpressionMetaValueObject in which the results are already populated and sorted.
-
-