Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
oesteban authored Jul 11, 2023
1 parent 507d170 commit 7fd9a69
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sdcflows/workflows/fit/pepolar.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def init_topup_wf(
to_las = pe.Node(ReorientImageAndMetadata(target_orientation="LAS"), name="to_las")
topup = pe.Node(
TOPUP(
config=data.load(f"flirtsch/b02b0{'_quick' * sloppy}.cnf")
config=str(data.load(f"flirtsch/b02b0{'_quick' * sloppy}.cnf"))
),
name="topup",
)
Expand Down
2 changes: 1 addition & 1 deletion sdcflows/workflows/fit/syn.py
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ def init_syn_preprocessing_wf(
prior2epi = pe.Node(
ApplyTransforms(
invert_transform_flags=[True, False, False],
input_image=data.load("fmap_atlas.nii.gz"),
input_image=str(data.load("fmap_atlas.nii.gz")),
),
name="prior2epi",
n_procs=omp_nthreads,
Expand Down

0 comments on commit 7fd9a69

Please sign in to comment.