Interface BulkExpressionDataVectorService<T extends BulkExpressionDataVector>
- All Superinterfaces:
BaseReadOnlyService<T>
- All Known Subinterfaces:
ProcessedExpressionDataVectorService
,RawAndProcessedExpressionDataVectorService
,RawExpressionDataVectorService
- All Known Implementing Classes:
AbstractBulkExpressionDataVectorService
,ProcessedExpressionDataVectorServiceImpl
,RawAndProcessedExpressionDataVectorServiceImpl
,RawExpressionDataVectorServiceImpl
public interface BulkExpressionDataVectorService<T extends BulkExpressionDataVector>
extends BaseReadOnlyService<T>
-
Method Summary
Modifier and TypeMethodDescriptionfind
(Collection<QuantitationType> quantitationTypes) Find specific type (BulkExpressionDataVectorService
) of vectors that meet the given criteria.find
(QuantitationType quantitationType) Find specific type (BulkExpressionDataVectorService
) of vectors that meet the given criteria.find
(BioAssayDimension bioAssayDimension) Find specific type (raw or processed, depending on the service) of vectors that meet the given criteria.findAndThaw
(Collection<QuantitationType> quantitationTypes) findAndThaw
(QuantitationType quantitationType) Find and thaw specific type (BulkExpressionDataVectorService
) of vectors that meet the given criteria.findAndThaw
(BioAssayDimension bioAssayDimension) thaw
(Collection<T> vectors) Deprecated.Methods inherited from interface ubic.gemma.persistence.service.BaseReadOnlyService
countAll, find, findOrFail, getElementClass, load, load, loadAll, loadOrFail, loadOrFail, loadOrFail, loadOrFail, streamAll, streamAll
-
Method Details
-
find
@Secured({"IS_AUTHENTICATED_ANONYMOUSLY","AFTER_ACL_DATA_VECTOR_COLLECTION_READ"}) Collection<T> find(BioAssayDimension bioAssayDimension) Find specific type (raw or processed, depending on the service) of vectors that meet the given criteria.- Parameters:
bioAssayDimension
- the BA dimension- Returns:
- the found vectors of type
BulkExpressionDataVectorService
-
findAndThaw
@Secured({"IS_AUTHENTICATED_ANONYMOUSLY","AFTER_ACL_DATA_VECTOR_COLLECTION_READ"}) Collection<T> findAndThaw(BioAssayDimension bioAssayDimension) -
find
Find specific type (BulkExpressionDataVectorService
) of vectors that meet the given criteria.- Parameters:
quantitationTypes
- the QTs- Returns:
- the found vectors of type
BulkExpressionDataVectorService
-
findAndThaw
-
find
@Secured({"IS_AUTHENTICATED_ANONYMOUSLY","AFTER_ACL_DATA_VECTOR_COLLECTION_READ"}) Collection<T> find(QuantitationType quantitationType) Find specific type (BulkExpressionDataVectorService
) of vectors that meet the given criteria.- Parameters:
quantitationType
- the QT- Returns:
- the found vectors of type
BulkExpressionDataVectorService
-
findAndThaw
@Secured({"IS_AUTHENTICATED_ANONYMOUSLY","AFTER_ACL_DATA_VECTOR_COLLECTION_READ"}) Collection<T> findAndThaw(QuantitationType quantitationType) Find and thaw specific type (BulkExpressionDataVectorService
) of vectors that meet the given criteria. -
thaw
Deprecated.UsefindAndThaw(QuantitationType)
,findAndThaw(Collection)
orfindAndThaw(BioAssayDimension)
instead, it's much more efficient.Thaw the given vectors.
-
findAndThaw(QuantitationType)
,findAndThaw(Collection)
orfindAndThaw(BioAssayDimension)
instead, it's much more efficient.