Interface SingleCellExpressionDataMatrixWriter
-
- All Superinterfaces:
ExpressionDataMatrixWriter
- All Known Implementing Classes:
MexMatrixWriter
,TabularMatrixWriter
public interface SingleCellExpressionDataMatrixWriter extends ExpressionDataMatrixWriter
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default int
write(ExpressionDataMatrix<?> matrix, OutputStream stream)
default int
write(ExpressionDataMatrix<?> matrix, Writer writer)
default int
write(SingleCellExpressionDataMatrix<?> matrix, OutputStream stream)
int
write(SingleCellExpressionDataMatrix<?> matrix, Writer writer)
-
Methods inherited from interface ubic.gemma.core.datastructure.matrix.io.ExpressionDataMatrixWriter
setScaleType
-
-
-
-
Method Detail
-
write
default int write(ExpressionDataMatrix<?> matrix, Writer writer) throws IOException
- Specified by:
write
in interfaceExpressionDataMatrixWriter
- Throws:
IOException
-
write
int write(SingleCellExpressionDataMatrix<?> matrix, Writer writer) throws IOException
- Throws:
IOException
-
write
default int write(ExpressionDataMatrix<?> matrix, OutputStream stream) throws IOException
- Specified by:
write
in interfaceExpressionDataMatrixWriter
- Throws:
IOException
-
write
default int write(SingleCellExpressionDataMatrix<?> matrix, OutputStream stream) throws IOException
- Throws:
IOException
-
-