Skip to content

Commit 19effb6

Browse files
committed
Merge branch 'master' into enh/MRTrix3
Conflicts: CHANGES nipype/interfaces/fsl/__init__.py nipype/utils/nipype2boutiques.py
2 parents 50f8793 + afae53c commit 19effb6

File tree

20 files changed

+483
-284
lines changed

20 files changed

+483
-284
lines changed

CHANGES

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ Next release
22
============
33

44
* ENH: New interfaces for MRTrix3 (https://github.com/nipy/nipype/pull/1126)
5+
* ENH: New interface for FSL fslcpgeom utility (https://github.com/nipy/nipype/pull/1152)
56
* FIX: Enable absolute path definitions in DCMStack (https://github.com/nipy/nipype/pull/1089,
67
replaced by https://github.com/nipy/nipype/pull/1093)
78
* ENH: New mesh.MeshWarpMaths to operate on surface-defined warpings
@@ -13,6 +14,7 @@ Next release
1314
* FIX: FUGUE is now properly listing outputs. (https://github.com/nipy/nipype/pull/978)
1415
* ENH: Improved FieldMap-Based (FMB) workflow for correction of susceptibility distortions in EPI seqs.
1516
(https://github.com/nipy/nipype/pull/1019)
17+
* FIX: In the FSLXcommand _list_outputs function fixed for loop range (https://github.com/nipy/nipype/pull/1071)
1618
* ENH: Dropped support for now 7 years old Python 2.6 (https://github.com/nipy/nipype/pull/1069)
1719
* FIX: terminal_output is not mandatory anymore (https://github.com/nipy/nipype/pull/1070)
1820
* ENH: Added "nipype_cmd" tool for running interfaces from the command line (https://github.com/nipy/nipype/pull/795)

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,10 @@ to `NeuroStars.org <http://neurostars.org>`_ with a *nipype* tag. `NeuroStars.or
7777
http://neurostars.org/t/nipype/
7878
7979

80-
To participate in the Nipype development related discussion please use the following mailing list::
80+
To participate in the Nipype development related discussions please use the following mailing list::
8181
82-
http://projects.scipy.org/mailman/listinfo/nipy-devel
83-
82+
http://mail.python.org/mailman/listinfo/neuroimaging
83+
8484
Please add *[nipype]* to the subject line when posting on the mailing list.
8585

8686

@@ -124,5 +124,5 @@ There are interfaces to some GNU code but these are entirely optional.
124124
All trademarks referenced herein are property of their respective
125125
holders.
126126

127-
Copyright (c) 2009-2014, NIPY Developers
127+
Copyright (c) 2009-2015, NIPY Developers
128128
All rights reserved.

examples/fmri_ants_openfmri.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ def create_reg_workflow(name='registration'):
175175
"""
176176
Create a mask of the median image coregistered to the anatomical image
177177
"""
178-
178+
179179
mean2anat_mask = Node(fsl.BET(mask=True), name='mean2anat_mask')
180180
register.connect(mean2anatbbr, 'out_file', mean2anat_mask, 'in_file')
181181

matlabscripts/README.txt

Lines changed: 0 additions & 2 deletions
This file was deleted.

matlabscripts/parse_spm_config.m

Lines changed: 0 additions & 45 deletions
This file was deleted.

matlabscripts/parse_spm_config2.m

Lines changed: 0 additions & 54 deletions
This file was deleted.

nipype/algorithms/mesh.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ class ComputeMeshWarp(BaseInterface):
7878

7979
input_spec = ComputeMeshWarpInputSpec
8080
output_spec = ComputeMeshWarpOutputSpec
81+
_redirect_x = True
8182

8283
def _triangle_area(self, A, B, C):
8384
A = np.array(A)
@@ -221,6 +222,7 @@ class MeshWarpMaths(BaseInterface):
221222

222223
input_spec = MeshWarpMathsInputSpec
223224
output_spec = MeshWarpMathsOutputSpec
225+
_redirect_x = True
224226

225227
def _run_interface(self, runtime):
226228
try:

0 commit comments

Comments
 (0)