Skip to content

Commit 8a174d3

Browse files
committed
Organize directory structure so that support files are not registered in IJ2 menus
1 parent df040f6 commit 8a174d3

5 files changed

Lines changed: 21 additions & 3 deletions

File tree

BAR/src/main/resources/scripts/BAR/Analysis/Time_Series/Multi_ROI_Profiler.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ if (!rois) {
117117
return
118118
}
119119

120-
utils = loadLib("scripts/BAR/Utils.groovy")
120+
utils = loadLib("shared/Utils.groovy")
121121
if (!utils.isTimeSeq(imp, uiservice))
122122
return
123123

BAR/src/main/resources/scripts/BAR/Analysis/Time_Series/Normalize_Against_F0.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def getRoi(imp) {
5858
}
5959

6060

61-
utils = loadLib("scripts/BAR/Utils.groovy")
61+
utils = loadLib("shared/Utils.groovy")
6262
if (!utils.isSingleChannelTimeseq(imp, uiservice))
6363
return
6464

BAR/src/main/resources/scripts/BAR/Analysis/Time_Series/Register_Against_Average.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def loadLib(resourcePath) {
1212
(GroovyObject) cls.newInstance()
1313
}
1414

15-
utils = loadLib("scripts/BAR/Utils.groovy")
15+
utils = loadLib("shared/Utils.groovy")
1616
if (!utils.isSingleChannelTimeseq(imp, uiservice))
1717
return
1818

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# shared
2+
This is the internal [lib] directory of BAR commands.
3+
4+
5+
6+
------
7+
| [Home] | [Analysis] | [Annotation] | [Data Analysis] | [lib] | [My Routines] | [Segmentation] | [Tools] | [Utilities] | [Wiki] |
8+
9+
[Home]: https://github.com/tferr/Scripts
10+
[Analysis]: https://github.com/tferr/Scripts/tree/master/BAR/src/main/resources/scripts/BAR/Analysis
11+
[Annotation]: https://github.com/tferr/Scripts/tree/master/BAR/src/main/resources/scripts/BAR/Annotation
12+
[Data Analysis]: https://github.com/tferr/Scripts/tree/master/BAR/src/main/resources/scripts/BAR/Data_Analysis
13+
[lib]: https://github.com/tferr/Scripts/tree/master//BAR/src/main/resources/scripts/BAR/lib
14+
[My Routines]: https://github.com/tferr/Scripts/tree/master/BAR/src/main/resources/scripts/BAR/My_Routines
15+
[Segmentation]: https://github.com/tferr/Scripts/tree/master/BAR/src/main/resources/scripts/BAR/Segmentation
16+
[Tools]: https://github.com/tferr/Scripts/tree/master//BAR/src/main/resources/scripts/BAR/tools
17+
[Utilities]: https://github.com/tferr/Scripts/tree/master//BAR/src/main/resources/scripts/BAR/Utilities
18+
[Wiki]: https://imagej.net/BAR
File renamed without changes.

0 commit comments

Comments
 (0)