Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Mathias Goncalves <mathiasg@stanford.edu>
  • Loading branch information
oesteban and mgxd authored Sep 8, 2022
1 parent 062355a commit cbad583
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion sdcflows/interfaces/epi.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ class _SortPEBlipsInputSpec(BaseInterfaceInputSpec):

class _SortPEBlipsOutputSpec(TraitedSpec):
out_data = OutputMultiObject(
File(exists=True),
File(),
desc="list of input data",
)
pe_dirs = InputMultiObject(
Expand Down
2 changes: 1 addition & 1 deletion sdcflows/interfaces/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ class _PositiveDirectionCosinesInputSpec(BaseInterfaceInputSpec):


class _PositiveDirectionCosinesOutputSpec(TraitedSpec):
out_file = File(exists=True)
out_file = File()
in_orientation = traits.Str()


Expand Down
2 changes: 1 addition & 1 deletion sdcflows/workflows/fit/pepolar.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def init_topup_wf(
from niworkflows.interfaces.nibabel import SplitSeries
from ...interfaces.bspline import ApplyCoeffsField

# Separate the runs again, as our ApplyCoeffsField corrects them separatelly
# Separate the runs again, as our ApplyCoeffsField corrects them separately
split_blips = pe.Node(SplitSeries(), name="split_blips")
unwarp = pe.Node(ApplyCoeffsField(), name="unwarp")
unwarp.interface._always_run = True
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ install_requires =
nibabel >=3.0.1
nipype >=1.5.1,<2.0
traits <6.4
niworkflows @ git+https://github.com/nipreps/niworkflows.git@master
niworkflows ~= 1.6.3
nitransforms >= 21.0.0
numpy >= 1.21.0
pybids >= 0.15.1
Expand Down

0 comments on commit cbad583

Please sign in to comment.