Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Aliaksandr Halavatyi
AutoMicTools
Commits
a8c6a546
Commit
a8c6a546
authored
Sep 25, 2020
by
Aliaksandr Halavatyi
Browse files
minor
parent
7ec9c5f5
Changes
2
Hide whitespace changes
Inline
Side-by-side
pom.xml
View file @
a8c6a546
...
...
@@ -14,7 +14,7 @@
-->
<groupId>
embl.almf
</groupId>
<artifactId>
AutoMicTools_
</artifactId>
<version>
1.1.1
5
-SNAPSHOT
</version>
<version>
1.1.1
6
-SNAPSHOT
</version>
<name>
plugins/AutoMicTools_.jar
</name>
<description>
Collection of tools for automated (feedback) microscopy data acquisition and analysis
</description>
...
...
src/main/java/automic/online/microscope/ZeissLSM800.java
View file @
a8c6a546
...
...
@@ -15,6 +15,8 @@ import ij.gui.Roi;
import
java.awt.Polygon
;
public
abstract
class
ZeissLSM800
{
public
static
String
FEEDBACK_POSTFIX
=
"_feedback.json"
;
public
static
final
String
JOB_KEY
=
"Job"
;
public
static
final
String
X_KEY
=
"X"
;
public
static
final
String
Y_KEY
=
"Y"
;
...
...
@@ -179,7 +181,7 @@ public abstract class ZeissLSM800 {
private
static
File
getDecisionFile
(
File
_sourceImageFile
){
String
newFileName
=
FileUtils
.
cutExtension
(
_sourceImageFile
.
getName
())+
"_feedback.json"
;
String
newFileName
=
FileUtils
.
cutExtension
(
_sourceImageFile
.
getName
())+
FEEDBACK_POSTFIX
;
return
new
File
(
_sourceImageFile
.
getParentFile
(),
newFileName
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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