Interface ExpressionDataMatrixWriter
-
- All Known Subinterfaces:
BulkExpressionDataMatrixWriter
,SingleCellExpressionDataMatrixWriter
- All Known Implementing Classes:
MatrixWriter
,MexMatrixWriter
,TabularMatrixWriter
public interface ExpressionDataMatrixWriter
Base interface for writingExpressionDataMatrix
.- Author:
- poirigui
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description void
setScaleType(ScaleType scaleType)
Set the scale type to use when writing the matrix.default int
write(ExpressionDataMatrix<?> matrix, OutputStream stream)
int
write(ExpressionDataMatrix<?> matrix, Writer writer)
-
-
-
Method Detail
-
setScaleType
void setScaleType(@Nullable ScaleType scaleType)
Set the scale type to use when writing the matrix.When null, the original values must be used.
-
write
int write(ExpressionDataMatrix<?> matrix, Writer writer) throws IOException, UnsupportedOperationException
-
write
default int write(ExpressionDataMatrix<?> matrix, OutputStream stream) throws IOException
- Throws:
IOException
-
-