Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Bioimage Analysis
wellPlateReader
Commits
cd7da198
Commit
cd7da198
authored
Feb 11, 2021
by
danyfel80
Browse files
v3.0.3
- Fix: Batch sequence naming - Fix: Batch plate id
parent
2607a0f8
Changes
2
Hide whitespace changes
Inline
Side-by-side
WellPlateReader/pom.xml
View file @
cd7da198
...
...
@@ -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>
...
...
WellPlateReader/src/main/java/plugins/adufour/hcs/blocks/WellPlateBatch.java
View file @
cd7da198
...
...
@@ -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
();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment