Skip to content
Snippets Groups Projects
Commit cc595a2f authored by juanf's avatar juanf
Browse files

SSDM-3418 : Precision set to 9.

SVN: 36045
parent 6846072e
No related branches found
No related tags found
No related merge requests found
...@@ -293,6 +293,12 @@ function PlateView(plateController, plateModel) { ...@@ -293,6 +293,12 @@ function PlateView(plateController, plateModel) {
if(!dataByPosition[wellRow]) { if(!dataByPosition[wellRow]) {
dataByPosition[wellRow] = []; dataByPosition[wellRow] = [];
} }
for(var vIdx = 0; vIdx < wellData.values.length; vIdx++) {
var value = wellData.values[vIdx];
if(value.toPrecision) {
wellData.values[vIdx] = value.toPrecision(9);
}
}
dataByPosition[wellRow][wellColumn] = wellData; dataByPosition[wellRow][wellColumn] = wellData;
} }
receivedData.featureVectors = dataByPosition; receivedData.featureVectors = dataByPosition;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment