Skip to content

Commit 41b9cd1

Browse files
author
Mathieu Dubois
committed
Merge branch 'master' into fix_tutorials
Conflicts: examples/fmri_ants_openfmri.py
2 parents 4f5ee8e + c993606 commit 41b9cd1

File tree

15 files changed

+381
-193
lines changed

15 files changed

+381
-193
lines changed

CHANGES

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,56 @@
11
Next release
22
============
33

4+
* FIX: Amend create_tbss_non_fa() workflow to match FSL's tbss_non_fa command. (https://github.com/nipy/nipype/pull/1033)
5+
* FIX: remove unused mandatory flag from spm normalize (https://github.com/nipy/nipype/pull/1048)
6+
* ENH: Update ANTSCorticalThickness interface (https://github.com/nipy/nipype/pull/1013)
7+
* FIX: Edge case with sparsemodels and PEP8 cleanup (https://github.com/nipy/nipype/pull/1046)
48
* ENH: New io interfaces for JSON files reading/writing (https://github.com/nipy/nipype/pull/1020)
59
* ENH: Enhanced openfmri script to support freesurfer linkage (https://github.com/nipy/nipype/pull/1037)
610
* BUG: matplotlib is supposed to be optional (https://github.com/nipy/nipype/pull/1003)
711
* FIX: Fix split_filename behaviour when path has no file component (https://github.com/nipy/nipype/pull/1035)
812
* ENH: Updated FSL dtifit to include option for grad non-linearities (https://github.com/nipy/nipype/pull/1032)
913
* ENH: Updated Camino tracking interfaces, which can now use FSL bedpostx output.
10-
New options also include choice of tracker, interpolator, stepsize and
14+
New options also include choice of tracker, interpolator, stepsize and
1115
curveinterval for angle threshold (https://github.com/nipy/nipype/pull/1029)
1216
* FIX: Interfaces redirecting X crashed if $DISPLAY not defined (https://github.com/nipy/nipype/pull/1027)
1317
* FIX: Bug crashed 'make api' (https://github.com/nipy/nipype/pull/1026)
1418
* ENH: Updated antsIntroduction to handle RA and RI registrations (https://github.com/nipy/nipype/pull/1009)
15-
* ENH: Updated N4BiasCorrection input spec to include weight image and spline order. Made
19+
* ENH: Updated N4BiasCorrection input spec to include weight image and spline order. Made
1620
argument formatting consistent. Cleaned ants.segmentation according to PEP8.
1721
(https://github.com/nipy/nipype/pull/990/files)
1822
* ENH: SPM12 Normalize interface (https://github.com/nipy/nipype/pull/986)
1923
* FIX: Utility interface test dir (https://github.com/nipy/nipype/pull/986)
2024
* FIX: IPython engine directory reset after crash (https://github.com/nipy/nipype/pull/987)
2125
* ENH: Resting state fMRI example with NiPy realignment and no SPM (https://github.com/nipy/nipype/pull/992)
22-
* FIX: Corrected Freesurfer SegStats _list_outputs to avoid error if summary_file is
26+
* FIX: Corrected Freesurfer SegStats _list_outputs to avoid error if summary_file is
2327
undefined (issue #994)(https://https://github.com/nipy/nipype/pull/996)
2428
* FIX: OpenfMRI support and FSL 5.0.7 changes (https://github.com/nipy/nipype/pull/1006)
2529
* FIX: Output prefix in SPM Normalize with modulation (https://github.com/nipy/nipype/pull/1023)
2630
* ENH: Usability improvements in cluster environments (https://github.com/nipy/nipype/pull/1025)
2731
* ENH: ANTs JointFusion() (https://github.com/nipy/nipype/pull/1042)
32+
* ENH: Added csvReader() utility (https://github.com/nipy/nipype/pull/1044)
2833

2934
Release 0.10.0 (October 10, 2014)
3035
============
3136

3237
* ENH: New miscelaneous interfaces: SplitROIs (mapper), MergeROIs (reducer)
3338
to enable parallel processing of very large images.
3439
* ENH: Updated FSL interfaces: BEDPOSTX and XFibres, former interfaces are still
35-
available with the version suffix: BEDPOSTX4 and XFibres4. Added gpu
40+
available with the version suffix: BEDPOSTX4 and XFibres4. Added gpu
3641
versions of BEDPOSTX: BEDPOSTXGPU, BEDPOSTX5GPU, and BEDPOSTX4GPU
3742
* ENH: Added experimental support for MIPAV algorithms thorugh JIST plugins
3843
* ENH: New dipy interfaces: Denoise, Resample
3944
* ENH: New Freesurfer interfaces: Tkregister2 (for conversion of fsl style matrices to freesurfer format), MRIPretess
4045
* ENH: New FSL interfaces: WarpPoints, WarpPointsToStd, EpiReg, ProbTrackX2, WarpUtils, ConvertWarp
4146
* ENH: New miscelaneous interfaces: AddCSVRow, NormalizeProbabilityMapSet, AddNoise
4247
* ENH: New AFNI interfaces: Eval, Means, SVMTest, SVMTrain
43-
* ENH: FUGUE interface has been refactored to use the name_template system, 3 examples
48+
* ENH: FUGUE interface has been refactored to use the name_template system, 3 examples
4449
added to doctests, some bugs solved.
4550
* API: Interfaces to external packages are no longer available in the top-level
4651
``nipype`` namespace, and must be imported directly (e.g.
4752
``from nipype.interfaces import fsl``).
48-
* ENH: Support for elastix via a set of new interfaces: Registration, ApplyWarp,
53+
* ENH: Support for elastix via a set of new interfaces: Registration, ApplyWarp,
4954
AnalyzeWarp, PointsWarp, and EditTransform
5055
* ENH: New ANTs interface: ApplyTransformsToPoints, LaplacianThickness
5156
* ENH: New Diffusion Toolkit interface: TrackMerge
@@ -61,7 +66,7 @@ Release 0.10.0 (October 10, 2014)
6166
* ENH: New color mode for write_graph
6267
* ENH: You can now force MapNodes to be run serially
6368
* ENH: Added ANTS based openfmri workflow
64-
* ENH: MapNode now supports flattening of nested lists
69+
* ENH: MapNode now supports flattening of nested lists
6570
* ENH: Support for headless mode using Xvfb
6671
* ENH: nipype_display_crash has a debugging mode
6772
* FIX: MRTrix tracking algorithms were ignoring mask parameters.

examples/fmri_ants_openfmri.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,6 @@ def create_reg_workflow(name='registration'):
281281

282282
return register
283283

284-
285284
def get_aparc_aseg(files):
286285
"""
287286
Return the aparc+aseg.mgz file

0 commit comments

Comments
 (0)