Skip to content

Commit

Permalink
FIX: Relax tolerance for different affines when concatenating blips (#…
Browse files Browse the repository at this point in the history
…265)

* MNT: Pin niworkflows >=1.4.8, < 1.6

Skip 1.5.x versions before inclusion of the new parameter

* FIX: Relax tolerance for different affines when concatenating blips

* Update sdcflows/workflows/fit/pepolar.py

Co-authored-by: Mathias Goncalves <[email protected]>

Co-authored-by: Mathias Goncalves <[email protected]>
  • Loading branch information
effigies and mgxd authored Apr 9, 2022
1 parent a86c6e0 commit be0c9dc
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 @@ -121,7 +121,7 @@ def init_topup_wf(

flatten = pe.Node(Flatten(), name="flatten")
regrid = pe.Node(UniformGrid(reference=grid_reference), name="regrid")
concat_blips = pe.Node(MergeSeries(), name="concat_blips")
concat_blips = pe.Node(MergeSeries(affine_tolerance=1e-4), name="concat_blips")
readout_time = pe.MapNode(
GetReadoutTime(),
name="readout_time",
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ install_requires =
attrs >= 20.1.0
nibabel >=3.0.1
nipype >=1.5.1,<2.0
niworkflows >= 1.4.2, < 1.6
niworkflows >= 1.4.8, < 1.6, !=1.5.0, !=1.5.1, !=1.5.2, !=1.5.3
nitransforms ~= 21.0.0
numpy
pybids >= 0.12.1
Expand Down

0 comments on commit be0c9dc

Please sign in to comment.