Interface CoexpressionService
-
- All Known Implementing Classes:
CoexpressionServiceImpl
public interface CoexpressionService
A key service for working with coexpression at a fairly low level. This is responsible for CUD operations; retrieval is by 'find' methods. Note that all of the 'find' methods require a non-empty set of dataset ids to query. It is the responsibility of the caller to security-filter the ids. The need for security is why we don't permit queries of "all" data sets at this level. Retrieval of information on gene node degree is not constrained by security, which we deemed acceptable because the only information returned is a summary count.- Author:
- Gemma
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Integer
countLinks(BioAssaySet ee, Gene gene)
Map<Gene,Integer>
countOldLinks(Collection<Gene> genes)
void
createOrUpdate(BioAssaySet bioAssaySet, List<NonPersistentNonOrderedCoexpLink> links, LinkCreator c, Set<Gene> geesTested)
Maintenance method.void
deleteLinks(BioAssaySet experiment)
Maintenance method.List<CoexpressionValueObject>
findCoexpressionRelationships(Gene gene, Collection<Long> bas, int maxResults, boolean quick)
Find links which are common to all of the given data sets.List<CoexpressionValueObject>
findCoexpressionRelationships(Gene gene, Collection<Long> bas, int stringency, int maxResults, boolean quick)
Search for coexpression across all available data sets, for the given genes considered individually, subject to a stringency constraint.Map<Long,List<CoexpressionValueObject>>
findCoexpressionRelationships(Taxon t, Collection<Long> genes, Collection<Long> bas, int maxResults, boolean quick)
Find coexpression links for the genes that are common to all the given datasets (that is, the stringency is equal to the size of the set of datasets)Map<Long,List<CoexpressionValueObject>>
findCoexpressionRelationships(Taxon t, Collection<Long> genes, Collection<Long> bas, int stringency, int maxResults, boolean quick)
Find coexpression links for the genes that are common to at least stringency of the given datasets.Map<Long,List<CoexpressionValueObject>>
findInterCoexpressionRelationships(Taxon t, Collection<Long> genes, Collection<Long> bas, int stringency, boolean quick)
Return coexpression relationships among the given genes in the given data sets, in a map of query gene to coexpression objects.Collection<CoexpressionValueObject>
getCoexpression(BioAssaySet experiment, boolean quick)
GeneCoexpressionNodeDegreeValueObject
getNodeDegree(Gene g)
Map<Long,GeneCoexpressionNodeDegreeValueObject>
getNodeDegrees(Collection<Long> genes)
boolean
hasLinks(BioAssaySet ee)
Check if a given dataset has coexpression links.Map<SupportDetails,Gene2GeneCoexpression>
initializeLinksFromOldData(Gene gene, Map<Long,Gene> idMap, Map<NonPersistentNonOrderedCoexpLink,SupportDetails> linksSoFar, Set<Long> skipGenes)
void
updateNodeDegrees(Taxon taxon)
-
-
-
Method Detail
-
hasLinks
boolean hasLinks(BioAssaySet ee)
Check if a given dataset has coexpression links.
-
countLinks
@Secured({"IS_AUTHENTICATED_ANONYMOUSLY","ACL_SECURABLE_READ"}) Integer countLinks(BioAssaySet ee, Gene gene)
- Parameters:
gene
- geneee
- bio assay set- Returns:
- the number of links the gene has in the given data set ("node degree")
-
createOrUpdate
@Secured({"GROUP_USER","ACL_SECURABLE_EDIT"}) void createOrUpdate(BioAssaySet bioAssaySet, List<NonPersistentNonOrderedCoexpLink> links, LinkCreator c, Set<Gene> geesTested)
Maintenance method.- Parameters:
bioAssaySet
- should be all of them for the bioAssaySet (not a batch)geesTested
- genes which were testedc
- link creatorlinks
- links
-
deleteLinks
@Secured({"GROUP_USER","ACL_SECURABLE_EDIT"}) void deleteLinks(BioAssaySet experiment)
Maintenance method. Remove coexpression information from the database about the experiment in question (this does not remove the analysis object).- Parameters:
experiment
- experiment
-
findCoexpressionRelationships
List<CoexpressionValueObject> findCoexpressionRelationships(Gene gene, Collection<Long> bas, int maxResults, boolean quick)
Find links which are common to all of the given data sets.- Parameters:
bas
- data sets the link must be supported by; that is, the stringency is implied by bas.size(). Assumed to be security-filtered.gene
- genequick
- quickmaxResults
- max results- Returns:
- coexpression results.
-
findCoexpressionRelationships
List<CoexpressionValueObject> findCoexpressionRelationships(Gene gene, Collection<Long> bas, int stringency, int maxResults, boolean quick)
Search for coexpression across all available data sets, for the given genes considered individually, subject to a stringency constraint.- Parameters:
bas
- assumed to be security-filtered.stringency
- the minimum number of data sets for which the coexpression must be observed, among the given datasets.quick
- quickmaxResults
- max resultsgene
- gene- Returns:
- coexpression results.
-
findCoexpressionRelationships
Map<Long,List<CoexpressionValueObject>> findCoexpressionRelationships(Taxon t, Collection<Long> genes, Collection<Long> bas, int maxResults, boolean quick)
Find coexpression links for the genes that are common to all the given datasets (that is, the stringency is equal to the size of the set of datasets)- Parameters:
bas
- - assumed to already be security-filteredquick
- quickmaxResults
- max resultsgenes
- genest
- taxon- Returns:
- a map of gene IDs to coexpression results.
-
findCoexpressionRelationships
Map<Long,List<CoexpressionValueObject>> findCoexpressionRelationships(Taxon t, Collection<Long> genes, Collection<Long> bas, int stringency, int maxResults, boolean quick)
Find coexpression links for the genes that are common to at least stringency of the given datasets.- Parameters:
bas
- assumed to already be security-filteredmaxResults
- limit to the number of results per gene, but connections among the query genes (if there is more than one) are given priority and not subject to the limit.stringency
- the minimum number of data sets for which the coexpression must be observed, among the given datasets.quick
- quickt
- taxongenes
- genes- Returns:
- a map of gene IDs to coexpression results.
-
findInterCoexpressionRelationships
Map<Long,List<CoexpressionValueObject>> findInterCoexpressionRelationships(Taxon t, Collection<Long> genes, Collection<Long> bas, int stringency, boolean quick)
Return coexpression relationships among the given genes in the given data sets, in a map of query gene to coexpression objects.- Parameters:
bas
- data sets to be considered, presumed to be security filtered alreadystringency
- Must be less than or equal to the number of data sets datasets.quick
- quickt
- taxongenes
- genes- Returns:
- a map of gene IDs to coexpression results.
-
getCoexpression
@Secured({"IS_AUTHENTICATED_ANONYMOUSLY","ACL_SECURABLE_READ"}) Collection<CoexpressionValueObject> getCoexpression(BioAssaySet experiment, boolean quick)
- Parameters:
quick
- quickexperiment
- experiment- Returns:
- all the coexpression links for the given experiment, but not including flipped versions
-
updateNodeDegrees
@Secured("GROUP_ADMIN") void updateNodeDegrees(Taxon taxon)
-
getNodeDegree
GeneCoexpressionNodeDegreeValueObject getNodeDegree(Gene g)
-
getNodeDegrees
Map<Long,GeneCoexpressionNodeDegreeValueObject> getNodeDegrees(Collection<Long> genes)
-
initializeLinksFromOldData
@Secured("GROUP_ADMIN") Map<SupportDetails,Gene2GeneCoexpression> initializeLinksFromOldData(Gene gene, Map<Long,Gene> idMap, Map<NonPersistentNonOrderedCoexpLink,SupportDetails> linksSoFar, Set<Long> skipGenes)
- Parameters:
gene
- geneidMap
- id maplinksSoFar
- links so farskipGenes
- skip genes- Returns:
- links that were made
-
countOldLinks
@Secured("GROUP_ADMIN") Map<Gene,Integer> countOldLinks(Collection<Gene> genes)
-
-