Skip to content

Commit 5945fc1

Browse files
committed
Make Sholl plugins macro recordable.
This depends on imagej/imagej-legacy#313
1 parent d32e952 commit 5945fc1

File tree

2 files changed

+26
-12
lines changed

2 files changed

+26
-12
lines changed

src/main/java/sc/fiji/snt/plugin/ShollAnalysisImgCmd.java

+13-11
Original file line numberDiff line numberDiff line change
@@ -316,9 +316,16 @@ public void onEvent(final DataDeletedEvent evt) {
316316

317317
@Override
318318
public void run() {
319-
// the code here gets called once the prompt is displayed.
320-
// There is no "OK" button in the prompt, so we don't need anything here
321-
// All the code is run from callbacks
319+
// There is no "OK" button in the prompt, so we don't need anything here. All functionality is run from callbacks
320+
// The code here gets called once the prompt is displayed and when CommandService.run() is called, so we'll only
321+
// run analysis if called from a (pre-recorded) macro
322+
if (ij.IJ.isMacro()) {
323+
try {
324+
runAnalysis();
325+
} catch (final InterruptedException e) {
326+
throw new RuntimeException(e);
327+
}
328+
}
322329
}
323330

324331
/*
@@ -361,14 +368,9 @@ private boolean ongoingAnalysis() {
361368

362369
protected void runAnalysis() throws InterruptedException {
363370
if (Recorder.record) {
364-
Recorder.recordString(
365-
"// N.B.: Currently,recorded instances of the Sholl Analysis prompt may not allow for \n" //
366-
+ "// fully automated macros(see e.g., https://github.com/imagej/imagej-legacy/pull/239.)\n" //
367-
+ "// Please have a look at the example scripts in Templates>Neuroanatomy>\n"//
368-
+ "// for more robust ways to automate Sholl. E.g., the script\n"//
369-
+ "// 'Sholl_Extract_Profile_From_Image_Demo.py' exemplifies how to parse\n"//
370-
+ "// an image programmatically. Alternatively, the Legacy IJ1 command remains\n"//
371-
+ "// available with historical support for recorded calls.\n");
371+
Recorder.recordString("// Please have a look at the example scripts in Templates>Neuroanatomy> for more\n"//
372+
+ "// robust ways to automate Sholl. E.g., Sholl_Extract_Profile_From_Image_Demo.py\n"//
373+
+ "// exemplifies how to parse an image programmatically using API calls");
372374
}
373375
switch (scope) {
374376
case SCOPE_IMP:

src/main/java/sc/fiji/snt/plugin/ShollAnalysisTreeCmd.java

+13-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
import java.util.*;
2828
import java.util.concurrent.Future;
2929

30+
import ij.plugin.frame.Recorder;
3031
import net.imagej.ImageJ;
3132
import net.imagej.lut.LUTService;
3233
import net.imglib2.display.ColorTable;
@@ -249,7 +250,13 @@ public class ShollAnalysisTreeCmd extends DynamicCommand implements Interactive,
249250

250251
@Override
251252
public void run() {
252-
// Do nothing. Actually analysis is performed by runAnalysis();
253+
if (ij.IJ.isMacro()) { // see ShollAnalyisImgCmd#run
254+
try {
255+
runAnalysis();
256+
} catch (final InterruptedException e) {
257+
throw new RuntimeException(e);
258+
}
259+
}
253260
}
254261

255262
/*
@@ -268,6 +275,11 @@ public void cancel() {
268275

269276
@SuppressWarnings("unused")
270277
private void runAnalysis() throws InterruptedException {
278+
if (Recorder.record) {
279+
Recorder.recordString("// Please have a look at the example scripts in Templates>Neuroanatomy> for more\n"//
280+
+ "// robust ways to automate Sholl. E.g., Sholl_Extensive_Stats_Demo.groovy\n"//
281+
+ "// exemplifies how to obtain and analyze profiles in a programmatic way");
282+
}
271283
if (analysisFuture != null && !analysisFuture.isDone()) {
272284
threadService.queue(() -> {
273285
final boolean killExisting = helper.getConfirmation("An analysis is already running. Abort it?",

0 commit comments

Comments
 (0)