Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
wellPlateReader
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Bioimage Analysis
wellPlateReader
Commits
cd7da198
Commit
cd7da198
authored
4 years ago
by
Daniel Felipe González Obando
Browse files
Options
Downloads
Patches
Plain Diff
v3.0.3
- Fix: Batch sequence naming - Fix: Batch plate id
parent
2607a0f8
No related branches found
Branches containing commit
Tags
v0.13
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
WellPlateReader/pom.xml
+1
-1
1 addition, 1 deletion
WellPlateReader/pom.xml
WellPlateReader/src/main/java/plugins/adufour/hcs/blocks/WellPlateBatch.java
+3
-0
3 additions, 0 deletions
.../main/java/plugins/adufour/hcs/blocks/WellPlateBatch.java
with
4 additions
and
1 deletion
WellPlateReader/pom.xml
+
1
−
1
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>
...
...
This diff is collapsed.
Click to expand it.
WellPlateReader/src/main/java/plugins/adufour/hcs/blocks/WellPlateBatch.java
+
3
−
0
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
();
...
...
This diff is collapsed.
Click to expand it.
Preview
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!
Save comment
Cancel
Please
register
or
sign in
to comment