File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed
nipype/interfaces/mrtrix3 Expand file tree Collapse file tree 3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 1
1
Next release
2
2
============
3
3
4
+ * ENH: New interfaces for MRTrix3 (https://github.com/nipy/nipype/pull/1126)
4
5
* FIX: Enable absolute path definitions in DCMStack (https://github.com/nipy/nipype/pull/1089,
5
6
replaced by https://github.com/nipy/nipype/pull/1093)
6
7
* ENH: New mesh.MeshWarpMaths to operate on surface-defined warpings
Original file line number Diff line number Diff line change 3
3
# -*- coding: utf-8 -*-
4
4
5
5
from utils import Mesh2PVE
6
- from preprocess import ResponseSD
6
+ from preprocess import ResponseSD , ACTPrepareFSL
7
7
from tracking import Tractography
Original file line number Diff line number Diff line change @@ -145,11 +145,11 @@ class ACTPrepareFSL(CommandLine):
145
145
-------
146
146
147
147
>>> import nipype.interfaces.mrtrix3 as mrt
148
- >>> resp = mrt.ACTPrepareFSL()
149
- >>> resp .inputs.in_file = 'T1.nii.gz'
150
- >>> resp .cmdline # doctest: +ELLIPSIS
148
+ >>> prep = mrt.ACTPrepareFSL()
149
+ >>> prep .inputs.in_file = 'T1.nii.gz'
150
+ >>> prep .cmdline # doctest: +ELLIPSIS
151
151
'act_anat_prepare_fsl T1.nii.gz act_5tt.mif'
152
- >>> resp .run() # doctest: +SKIP
152
+ >>> prep .run() # doctest: +SKIP
153
153
"""
154
154
155
155
_cmd = 'act_anat_prepare_fsl'
You can’t perform that action at this time.
0 commit comments