Interface RawExpressionDataVectorService

    • Method Detail

      • find

        @Secured({"IS_AUTHENTICATED_ANONYMOUSLY","AFTER_ACL_DATAVECTOR_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 DesignElementDataVectorService
      • findAndThaw

        @Secured({"IS_AUTHENTICATED_ANONYMOUSLY","AFTER_ACL_DATAVECTOR_COLLECTION_READ"})
        Collection<T> findAndThaw​(BioAssayDimension bioAssayDimension)
      • find

        @Secured("GROUP_ADMIN")
        Collection<T> find​(Collection<QuantitationType> quantitationTypes)
        Find specific type (DesignElementDataVectorService) of vectors that meet the given criteria.
        Parameters:
        quantitationTypes - the QTs
        Returns:
        the found vectors of type DesignElementDataVectorService
      • find

        @Secured({"IS_AUTHENTICATED_ANONYMOUSLY","AFTER_ACL_DATAVECTOR_COLLECTION_READ"})
        Collection<T> find​(QuantitationType quantitationType)
        Find specific type (DesignElementDataVectorService) of vectors that meet the given criteria.
        Parameters:
        quantitationType - the QT
        Returns:
        the found vectors of type DesignElementDataVectorService
      • findAndThaw

        @Secured({"IS_AUTHENTICATED_ANONYMOUSLY","AFTER_ACL_DATAVECTOR_COLLECTION_READ"})
        Collection<T> findAndThaw​(QuantitationType quantitationType)
        Find and thaw specific type (DesignElementDataVectorService) of vectors that meet the given criteria.
      • thaw

        @CheckReturnValue
        @Deprecated
        Collection<T> thaw​(Collection<T> vectors)
        Deprecated.
        Use findAndThaw(QuantitationType), findAndThaw(Collection) or findAndThaw(BioAssayDimension) instead, it's much more efficient.
        Thaw the given vectors.