Interface SingleCellExpressionDataMatrix<T>

    • Method Detail

      • getQuantitationType

        QuantitationType getQuantitationType()
        Return the quantitation type for this matrix.
      • getSingleCellDimension

        SingleCellDimension getSingleCellDimension()
        Return the single-cell dimension for this matrix.
      • getColumn

        T[] getColumn​(int column)
        Access a single column of the matrix.

        Important note: Retrieving a column is a O(n log m) operation where n is the number of vectors and m is the number of cells. Always favour row-oriented operations when possible.

        Specified by:
        getColumn in interface ExpressionDataMatrix<T>
        Parameters:
        column - index
        Returns:
        T[]
      • getBioAssays

        List<BioAssay> getBioAssays()
        Obtain the list of bioassays.
      • getBioAssayForColumn

        BioAssay getBioAssayForColumn​(int j)
        Obtain a bioassay applicable to a given column.
      • getCellIds

        List<String> getCellIds()
        Note: cell IDs are only unique within a given assay
      • getCellIdForColumn

        String getCellIdForColumn​(int j)
        Obtain the cell ID of a given column.