Skip to content

Commit e2571dc

Browse files
committed
fix: create both workflow options
1 parent a374998 commit e2571dc

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

nipype/workflows/dmri/fsl/tbss.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,8 +387,14 @@ def create_tbss_all(name='tbss_all', estimate_skeleton=True):
387387
-------
388388
389389
>>> from nipype.workflows.dmri.fsl import tbss
390-
>>> tbss = tbss.create_tbss_all('tbss')
390+
>>> tbss = tbss.create_tbss_all('tbss', estimate_skeleton=True)
391391
>>> tbss.inputs.inputnode.skeleton_thresh = 0.2
392+
>>> tbss.inputs.inputnode.fa_list = ['s1_wrapped_FA.nii', 's2_wrapped_FA.nii', 's3_wrapped_FA.nii']
393+
394+
>>> tbss = tbss.create_tbss_all('tbss', estimate_skeleton=False)
395+
>>> tbss.inputs.inputnode.skeleton_thresh = 0.2
396+
>>> tbss.inputs.inputnode.fa_list = ['s1_wrapped_FA.nii', 's2_wrapped_FA.nii', 's3_wrapped_FA.nii']
397+
392398
393399
Inputs::
394400

0 commit comments

Comments
 (0)