@@ -19,38 +19,40 @@ is presented below:
1919 :simple_form: yes
2020
2121 from fmriprep.workflows.base import init_single_subject_wf
22- wf = init_single_subject_wf(subject_id='test',
23- name='single_subject_wf',
24- task_id='',
25- longitudinal=False,
26- t2s_coreg=False,
27- omp_nthreads=1,
28- freesurfer=True,
29- reportlets_dir='.',
30- output_dir='.',
31- bids_dir='.',
32- skull_strip_template='OASIS',
33- skull_strip_fixed_seed=False,
34- template='MNI152NLin2009cAsym',
35- output_spaces=['T1w', 'fsnative',
36- 'template', 'fsaverage5'],
37- medial_surface_nan=False,
38- cifti_output=False,
39- ignore=[],
40- debug=False,
41- low_mem=False,
42- anat_only=False,
43- hires=True,
44- use_bbr=True,
45- bold2t1w_dof=9,
46- fmap_bspline=False,
47- fmap_demean=True,
48- use_syn=True,
49- force_syn=True,
50- template_out_grid='native',
51- use_aroma=False,
52- aroma_melodic_dim=None,
53- ignore_aroma_err=False)
22+ wf = init_single_subject_wf(
23+ subject_id='test',
24+ name='single_subject_wf',
25+ task_id='',
26+ longitudinal=False,
27+ t2s_coreg=False,
28+ omp_nthreads=1,
29+ freesurfer=True,
30+ reportlets_dir='.',
31+ output_dir='.',
32+ bids_dir='.',
33+ skull_strip_template='OASIS',
34+ skull_strip_fixed_seed=False,
35+ template='MNI152NLin2009cAsym',
36+ output_spaces=['T1w', 'fsnative', 'template', 'fsaverage5'],
37+ medial_surface_nan=False,
38+ cifti_output=False,
39+ ignore=[],
40+ debug=False,
41+ low_mem=False,
42+ anat_only=False,
43+ hires=True,
44+ use_bbr=True,
45+ bold2t1w_dof=9,
46+ fmap_bspline=False,
47+ fmap_demean=True,
48+ use_syn=True,
49+ force_syn=True,
50+ template_out_grid='native',
51+ use_aroma=False,
52+ aroma_melodic_dim=None,
53+ ignore_aroma_err=False,
54+ use_mcflirt=False,
55+ )
5456
5557
5658T1w/T2w preprocessing
@@ -248,30 +250,32 @@ BOLD preprocessing
248250 :simple_form: yes
249251
250252 from fmriprep.workflows.bold import init_func_preproc_wf
251- wf = init_func_preproc_wf('/completely/made/up/path/sub-01_task-nback_bold.nii.gz',
252- omp_nthreads=1,
253- ignore=[],
254- freesurfer=True,
255- reportlets_dir='.',
256- output_dir='.',
257- template='MNI152NLin2009cAsym',
258- output_spaces=['T1w', 'fsnative',
259- 'template', 'fsaverage5'],
260- medial_surface_nan=False,
261- cifti_output=False,
262- debug=False,
263- low_mem=False,
264- use_bbr=True,
265- t2s_coreg=False,
266- bold2t1w_dof=9,
267- fmap_bspline=True,
268- fmap_demean=True,
269- use_syn=True,
270- force_syn=True,
271- template_out_grid='native',
272- use_aroma=False,
273- aroma_melodic_dim=None,
274- ignore_aroma_err=False)
253+ wf = init_func_preproc_wf(
254+ '/completely/made/up/path/sub-01_task-nback_bold.nii.gz',
255+ omp_nthreads=1,
256+ ignore=[],
257+ freesurfer=True,
258+ reportlets_dir='.',
259+ output_dir='.',
260+ template='MNI152NLin2009cAsym',
261+ output_spaces=['T1w', 'fsnative', 'template', 'fsaverage5'],
262+ medial_surface_nan=False,
263+ cifti_output=False,
264+ debug=False,
265+ low_mem=False,
266+ use_bbr=True,
267+ t2s_coreg=False,
268+ bold2t1w_dof=9,
269+ fmap_bspline=True,
270+ fmap_demean=True,
271+ use_syn=True,
272+ force_syn=True,
273+ template_out_grid='native',
274+ use_aroma=False,
275+ aroma_melodic_dim=None,
276+ ignore_aroma_err=False,
277+ use_mcflirt=False,
278+ )
275279
276280Preprocessing of :abbr: `BOLD ( blood-oxygen level-dependent ) ` files is
277281split into multiple sub-workflows described below.
@@ -332,11 +336,12 @@ Head-motion estimation
332336
333337 from fmriprep.workflows.bold import init_bold_hmc_wf
334338 wf = init_bold_hmc_wf(
339+ use_mcflirt=False,
335340 mem_gb=1,
336341 omp_nthreads=1)
337342
338343Using the previously :ref: `estimated reference scan <bold_ref >`,
339- FSL ``mcflirt `` is used to estimate head-motion.
344+ AFNI's ``3dVolreg `` is used to estimate head-motion.
340345As a result, one rigid-body transform with respect to
341346the reference image is written for each :abbr: `BOLD ( blood-oxygen level-dependent ) `
342347time-step.
@@ -546,7 +551,7 @@ Confounds estimation
546551 metadata={"RepetitionTime": 2.0,
547552 "SliceTiming": [0.0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9]})
548553
549- Given a motion-corrected fMRI, a brain mask, `` mcflirt `` movement parameters and a
554+ Given a motion-corrected fMRI, a brain mask, head-motion parameters and a
550555segmentation, the `discover_wf ` sub-workflow calculates potential
551556confounds per volume.
552557
0 commit comments