Skip to content

Commit

Permalink
made more compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian-Goodall-Halliwell committed Jan 23, 2025
1 parent f3c8496 commit 132c537
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/functions/run_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ def handle_unhandled_exception(exc_type, exc_value, exc_traceback):
args.labels_ctx = eval(args.labels_ctx)
args.struct = args.struct.split("-")
args.feat = args.feat.split("-")
args.demo_ref = args.demo_ref.split("-")
args.demo_ref = args.demo_ref.split("¥")
args.zbrains_ref = args.zbrains_ref.split("-")
args.resolution = args.resolution.split("-")

Expand Down
2 changes: 1 addition & 1 deletion src/zbrains.py
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ def main_func(args):
"--feat",
"-".join(features),
"--demo_ref",
"-".join(args.demo_ref),
"¥".join(args.demo_ref),
"--zbrains_ref",
"-".join(ref_zbrains_paths),
"--resolution",
Expand Down

0 comments on commit 132c537

Please sign in to comment.