Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
python-micrometa
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This project is archived. Its data is
read-only
.
Show more breadcrumbs
imcf
python-micrometa
Commits
128e3353
Commit
128e3353
authored
Jan 8, 2019
by
Niko Ehrenfeuchter
Browse files
Options
Downloads
Patches
Plain Diff
Use fully quoted call to be more explicit
parent
50f7810a
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/micrometa/imagej.py
+3
-3
3 additions, 3 deletions
src/micrometa/imagej.py
with
3 additions
and
3 deletions
src/micrometa/imagej.py
+
3
−
3
View file @
128e3353
...
...
@@ -7,7 +7,7 @@
from
os
import
listdir
from
os.path
import
join
,
dirname
,
basename
,
splitext
from
imcflibs
.iotools
import
readtxt
import
imcflibs
from
imcflibs.pathtools
import
exists
from
.
import
__version__
...
...
@@ -223,7 +223,7 @@ def gen_stitching_macro_code(experiment, pfx, path='', tplpath='', opts={}):
ijm
=
[]
ijm
.
append
(
'
// Generated by %s (%s).
\n\n
'
%
(
__name__
,
__version__
))
ijm
.
append
(
"
// =================== BEGIN macro HEAD ===================
\n
"
)
ijm
+=
readtxt
(
pfx
+
'
_head.ijm
'
,
templates
)
ijm
+=
imcflibs
.
iotools
.
readtxt
(
pfx
+
'
_head.ijm
'
,
templates
)
ijm
.
append
(
"
// ==================== END macro HEAD ====================
\n
"
)
ijm
.
append
(
'
\n
'
)
...
...
@@ -242,7 +242,7 @@ def gen_stitching_macro_code(experiment, pfx, path='', tplpath='', opts={}):
ijm
.
append
(
'
\n
'
)
ijm
.
append
(
"
// =================== BEGIN macro BODY ===================
\n
"
)
ijm
+=
readtxt
(
pfx
+
'
_body.ijm
'
,
templates
)
ijm
+=
imcflibs
.
iotools
.
readtxt
(
pfx
+
'
_body.ijm
'
,
templates
)
ijm
.
append
(
"
// ==================== END macro BODY ====================
\n
"
)
log
.
debug
(
'
--- ijm ---
\n
%s
\n
--- ijm ---
'
,
ijm
)
return
ijm
...
...
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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
sign in
to comment