Uses of Interface
ubic.gemma.core.datastructure.matrix.BulkExpressionDataMatrix
Packages that use BulkExpressionDataMatrix
Package
Description
This package contains classes for subsetting and aggregating single-cell data.
This package contains data structures for representing matrices of gene expression.
This package contains I/O utilities for reading and writing expression data matrices.
-
Uses of BulkExpressionDataMatrix in ubic.gemma.core.analysis.singleCell.aggregate
Methods in ubic.gemma.core.analysis.singleCell.aggregate that return BulkExpressionDataMatrixModifier and TypeMethodDescriptionstatic <T> BulkExpressionDataMatrix<T> SingleCellDataVectorAggregatorUtils.aggregate(SingleCellExpressionDataMatrix<T> scMatrix, SingleCellDataVectorAggregatorUtils.SingleCellAggregationMethod method, Class<T> scalarType) Aggregate a single-cell data matrix. -
Uses of BulkExpressionDataMatrix in ubic.gemma.core.datastructure.matrix
Subinterfaces of BulkExpressionDataMatrix in ubic.gemma.core.datastructure.matrixModifier and TypeInterfaceDescriptioninterfaceInterface for bulk expression data matrices that can be efficiently accessed as a primitive double matrix.interfaceInterface for bulk expression data matrices that can be efficiently accessed as a primitive int matrix.interfaceAn interface for bulk matrices that supports multipleBioAssayperBioMaterial.Classes in ubic.gemma.core.datastructure.matrix that implement BulkExpressionDataMatrixModifier and TypeClassDescriptionclassBase class for bulk expression data matrices.classBase class for ExpressionDataMatrix implementations that can deal with multiple BioAssays per BioMaterial.classclassA bulk expression data matrix that can be efficiently accessed as a primitive int matrix.classAn empty bulk expression data matrix.classUsed to make a 'dummy matrix' that has the column information populated.classMatrix of booleans mapped from an ExpressionExperiment.classA data structure that holds a reference to the data for a given expression experiment.classWarning, not fully tested.classMethods in ubic.gemma.core.datastructure.matrix that return BulkExpressionDataMatrixModifier and TypeMethodDescriptionstatic BulkExpressionDataMatrix<?> BulkExpressionDataMatrix.getMatrix(Collection<? extends BulkExpressionDataVector> vectors) Create a bulk expression data matrix from a collection of vectors.Methods in ubic.gemma.core.datastructure.matrix with parameters of type BulkExpressionDataMatrixModifier and TypeMethodDescriptionstatic List<BioMaterial> ExpressionDataMatrixColumnSort.orderByExperimentalDesign(BulkExpressionDataMatrix<?> dmatrix, Collection<ExperimentalFactor> factors, ExperimentalFactor primaryFactor) static <T extends BulkExpressionDataVector>
List<T> BulkExpressionDataMatrixUtils.toVectors(BulkExpressionDataMatrix<?> matrix, Class<T> vectorType) Convert aBulkExpressionDataMatrixto a collection ofBulkExpressionDataVector. -
Uses of BulkExpressionDataMatrix in ubic.gemma.core.datastructure.matrix.io
Methods in ubic.gemma.core.datastructure.matrix.io with parameters of type BulkExpressionDataMatrixModifier and TypeMethodDescriptionintJsonMatrixWriter.write(BulkExpressionDataMatrix<?> matrix, Class<? extends BulkExpressionDataVector> vectorType, Writer writer) intMatrixWriter.write(BulkExpressionDataMatrix<?> matrix, Class<? extends BulkExpressionDataVector> vectorType, Writer writer) intMatrixWriter.write(BulkExpressionDataMatrix<?> matrix, Class<? extends BulkExpressionDataVector> vectorType, Map<CompositeSequence, Collection<Gene>> geneAnnotations, Writer writer) intMatrixWriter.writeWithStringifiedGeneAnnotations(Writer writer, BulkExpressionDataMatrix<?> matrix, Class<? extends BulkExpressionDataVector> vectorType, Map<CompositeSequence, String[]> geneAnnotations) Alternate method that uses annotations in string form (e.g., read from another file).