Skip to content

Commit 0401201

Browse files
committed
Align with testing instructions
The workflow described in TESTING.md states to drag and drop the script onto Fiji, so for the time being let's stick to that
1 parent 0ea5eb6 commit 0401201

2 files changed

Lines changed: 20 additions & 24 deletions

File tree

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# @ String(label="Username") USERNAME
2+
# @ String(label="Password", style="password") PASSWORD
3+
# @ File(label="Path for results", style="directory") outputPath
4+
# @ Integer threshold
5+
# @ Boolean(label="Yes/No?") choice
6+
# @ RoiManager rm
7+
# @ CommandService command
8+
# @ LogService sjlog
9+
10+
import os
11+
12+
import imcflibs.log
13+
from imcflibs.imagej import misc
14+
15+
imcflibs.log.enable_console_logging()
16+
log = imcflibs.log.LOG
17+
18+
log.warning("Starting...")
19+
misc.save_script_parameters(script_globals=globals(), destination=outputPath)
20+
log.warning("Saved parameters to: %s/script_parameters.txt", outputPath)

β€Žtests/interactive-imagej/test_save_params.mdβ€Ž

Lines changed: 0 additions & 24 deletions
This file was deleted.

0 commit comments

Comments
Β (0)