Skip to content
Snippets Groups Projects
Commit cd7da198 authored by Daniel Felipe González Obando's avatar Daniel Felipe González Obando
Browse files

v3.0.3

- Fix: Batch sequence naming
- Fix: Batch plate id
parent 2607a0f8
No related branches found
Tags v0.13
No related merge requests found
......@@ -7,7 +7,7 @@
<version>1.0.1</version>
</parent>
<artifactId>well-plate-reader</artifactId>
<version>3.0.2</version>
<version>3.0.3</version>
<name>Well Plate Reader</name>
<description/>
<build>
......
......@@ -226,9 +226,12 @@ public class WellPlateBatch extends Batch
{
IField currentField = fieldIterator.next();
Point pos = currentWell.getPositionInPlate();
plateID.setValue(currentWellPlate.getId());
wellID.setValue("" + ((char) ('A' + pos.x - 1)) + StringUtil.toString(pos.y, 2));
fieldID.setValue((int) currentField.getId());
reader.loadField(currentWellPlate, currentWell, currentField, sequence, null);
sequence.setName(plateID.getValueAsString() + "_" + wellID.getValueAsString() + "_"
+ fieldID.getValueAsString());
element.setValue(sequence);
}
Thread.yield();
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment