Search in sources :

Example 1 with NormalizeRawBleachDataOp

use of org.vcell.vmicro.op.NormalizeRawBleachDataOp in project vcell by virtualcell.

the class NormalizeRawBleachData method compute0.

@Override
protected void compute0(TaskContext context, final ClientTaskStatusSupport clientTaskStatusSupport) throws Exception {
    // get input
    RowColumnResultSet rawExpDataset = context.getData(rawExpData);
    // do op
    NormalizeRawBleachDataOp op = new NormalizeRawBleachDataOp();
    RowColumnResultSet normExpDataset = op.normalizeRawBleachData(rawExpDataset);
    // set output
    context.setData(normExpData, normExpDataset);
}
Also used : RowColumnResultSet(cbit.vcell.math.RowColumnResultSet) NormalizeRawBleachDataOp(org.vcell.vmicro.op.NormalizeRawBleachDataOp)

Aggregations

RowColumnResultSet (cbit.vcell.math.RowColumnResultSet)1 NormalizeRawBleachDataOp (org.vcell.vmicro.op.NormalizeRawBleachDataOp)1