File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed
nipype/workflows/smri/freesurfer Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change 5
5
================
6
6
7
7
This script, smri_fsreconall.py, demonstrates the ability to use the
8
- reconall nipype workflow with a set of subjects and then make an average
9
- subject::
8
+ create_reconall_workflow function to create a workflow and then run it on a
9
+ set of subjects and then make an average subject::
10
10
11
11
python smri_fsreconall.py
12
12
13
+ For an example on how to call FreeSurfer's reconall script in Nipype
14
+ see smri_freesurfer.py.
15
+
13
16
Import necessary modules from nipype.
14
17
"""
15
18
Original file line number Diff line number Diff line change @@ -81,7 +81,11 @@ def link_masks(subjects_dir, subject_id):
81
81
return wf
82
82
83
83
def create_reconall_workflow (name = "ReconAll" , plugin_args = None ):
84
- """Creates the ReconAll workflow in nipype.
84
+ """Creates the ReconAll workflow in Nipype. This workflow is designed to
85
+ run the same commands as FreeSurfer's reconall script but with the added
86
+ features that a Nipype workflow provides. Before running this workflow, it
87
+ is necessary to have the FREESURFER_HOME environmental variable set to the
88
+ directory containing the version of FreeSurfer to be used in this workflow.
85
89
86
90
Example
87
91
-------
You can’t perform that action at this time.
0 commit comments