We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b24f945 commit 3ae1804Copy full SHA for 3ae1804
src/smriprep/interfaces/fsl.py
@@ -15,6 +15,12 @@ class FAST(_FAST):
15
"""
16
A replacement for nipype.interfaces.fsl.preprocess.FAST that allows
17
`bias_iters=0` to disable bias field correction entirely
18
+
19
+ >>> from smriprep.interfaces.fsl import FixBiasItersFAST as FAST
20
+ >>> fast = fsl.FAST()
21
+ >>> fast.inputs.in_files = 'sub-01_desc-warped_T1w.nii.gz'
22
+ >>> fast.cmdline
23
+ 'fast -o fast_ -S 1 -I 0 sub-01_desc-warped_T1w.nii.gz'
24
25
26
input_spec = _FixTraitFASTInputSpec
0 commit comments