@@ -66,18 +66,18 @@ class Bse(CommandLine):
66
66
"""
67
67
brain surface extractor (BSE)
68
68
This program performs automated skull and scalp removal on T1-weighted MRI volumes.
69
-
69
+
70
70
http://brainsuite.org/processing/surfaceextraction/bse/
71
-
71
+
72
72
Examples
73
73
--------
74
-
74
+
75
75
>>> from nipype.interfaces import brainsuite
76
76
>>> from nipype.testing import example_data
77
77
>>> bse = brainsuite.Bse()
78
78
>>> bse.inputs.inputMRIFile = example_data('structural.nii')
79
79
>>> results = bse.run() #doctest: +SKIP
80
-
80
+
81
81
"""
82
82
83
83
input_spec = BseInputSpec
@@ -178,17 +178,17 @@ class Bfc(CommandLine):
178
178
This program corrects gain variation in T1-weighted MRI.
179
179
180
180
http://brainsuite.org/processing/surfaceextraction/bfc/
181
-
181
+
182
182
Examples
183
183
--------
184
-
184
+
185
185
>>> from nipype.interfaces import brainsuite
186
186
>>> from nipype.testing import example_data
187
187
>>> bfc = brainsuite.Bfc()
188
188
>>> bfc.inputs.inputMRIFile = example_data('structural.nii')
189
189
>>> bfc.inputs.inputMaskFile = example_data('mask.nii')
190
190
>>> results = bfc.run() #doctest: +SKIP
191
-
191
+
192
192
"""
193
193
194
194
@@ -242,19 +242,19 @@ class Pvc(CommandLine):
242
242
partial volume classifier (PVC) tool.
243
243
This program performs voxel-wise tissue classification T1-weighted MRI.
244
244
Image should be skull-stripped and bias-corrected before tissue classification.
245
-
245
+
246
246
http://brainsuite.org/processing/surfaceextraction/pvc/
247
-
247
+
248
248
Examples
249
249
--------
250
-
250
+
251
251
>>> from nipype.interfaces import brainsuite
252
252
>>> from nipype.testing import example_data
253
253
>>> pvc = brainsuite.Pvc()
254
254
>>> pvc.inputs.inputMRIFile = example_data('structural.nii')
255
255
>>> pvc.inputs.inputMaskFile = example_data('mask.nii')
256
256
>>> results = pvc.run() #doctest: +SKIP
257
-
257
+
258
258
"""
259
259
260
260
input_spec = PvcInputSpec
@@ -283,9 +283,9 @@ class CerebroInputSpec(CommandLineInputSpec):
283
283
inputAtlasLabelFile = File (
284
284
mandatory = True , desc = 'atlas labeling' , argstr = '--atlaslabels %s' )
285
285
inputBrainMaskFile = File (desc = 'brain mask file' , argstr = '-m %s' )
286
- outputCerebrumMaskFile = File (desc = 'output cerebrum mask volume. If unspecified, output file name will be auto generated.' ,
286
+ outputCerebrumMaskFile = File (desc = 'output cerebrum mask volume. If unspecified, output file name will be auto generated.' ,
287
287
argstr = '-o %s' , genfile = True )
288
- outputLabelMaskFile = File (desc = 'output labeled hemisphere/cerebrum volume. If unspecified, output file name will be auto generated.' ,
288
+ outputLabelMaskFile = File (desc = 'output labeled hemisphere/cerebrum volume. If unspecified, output file name will be auto generated.' ,
289
289
argstr = '-l %s' , genfile = True )
290
290
costFunction = traits .Int (2 , usedefault = True , desc = '0,1,2' , argstr = '-c %d' )
291
291
useCentroids = traits .Bool (
@@ -336,9 +336,9 @@ class Cerebro(CommandLine):
336
336
>>> cerebro.inputs.inputAtlasLabelFile = 'atlasLabels.img'
337
337
>>> cerebro.inputs.inputBrainMaskFile = example_data('mask.nii')
338
338
>>> results = cerebro.run() #doctest: +SKIP
339
-
339
+
340
340
"""
341
-
341
+
342
342
input_spec = CerebroInputSpec
343
343
output_spec = CerebroOutputSpec
344
344
_cmd = 'cerebro'
@@ -397,7 +397,7 @@ class Cortex(CommandLine):
397
397
>>> cortex.inputs.inputHemisphereLabelFile = example_data('mask.nii')
398
398
>>> cortex.inputs.inputTissueFractionFile = example_data('tissues.nii.gz')
399
399
>>> results = cortex.run() #doctest: +SKIP
400
-
400
+
401
401
"""
402
402
403
403
input_spec = CortexInputSpec
@@ -451,7 +451,7 @@ class Scrubmask(CommandLine):
451
451
>>> scrubmask = brainsuite.Scrubmask()
452
452
>>> scrubmask.inputs.inputMaskFile = example_data('mask.nii')
453
453
>>> results = scrubmask.run() #doctest: +SKIP
454
-
454
+
455
455
"""
456
456
input_spec = ScrubmaskInputSpec
457
457
output_spec = ScrubmaskOutputSpec
@@ -464,8 +464,8 @@ def _gen_filename(self, name):
464
464
465
465
if name == 'outputMaskFile' :
466
466
return getFileName (self , self .inputs .inputMaskFile , name , '.nii.gz' )
467
-
468
-
467
+
468
+
469
469
return None
470
470
471
471
def _list_outputs (self ):
@@ -497,15 +497,15 @@ class Tca(CommandLine):
497
497
This program removes topological handles from a binary object.
498
498
499
499
http://brainsuite.org/processing/surfaceextraction/tca/
500
-
500
+
501
501
Examples
502
502
--------
503
503
>>> from nipype.interfaces import brainsuite
504
504
>>> from nipype.testing import example_data
505
505
>>> tca = brainsuite.Tca()
506
506
>>> tca.inputs.inputMaskFile = example_data('mask.nii')
507
507
>>> results = tca.run() #doctest: +SKIP
508
-
508
+
509
509
"""
510
510
input_spec = TcaInputSpec
511
511
output_spec = TcaOutputSpec
@@ -551,7 +551,7 @@ class Dewisp(CommandLine):
551
551
can be before it is considered part of the image.
552
552
553
553
http://brainsuite.org/processing/surfaceextraction/dewisp/
554
-
554
+
555
555
Examples
556
556
--------
557
557
@@ -560,9 +560,9 @@ class Dewisp(CommandLine):
560
560
>>> dewisp = brainsuite.Dewisp()
561
561
>>> dewisp.inputs.inputMaskFile = example_data('mask.nii')
562
562
>>> results = dewisp.run() #doctest: +SKIP
563
-
563
+
564
564
"""
565
-
565
+
566
566
input_spec = DewispInputSpec
567
567
output_spec = DewispOutputSpec
568
568
_cmd = 'dewisp'
@@ -703,9 +703,9 @@ class Pialmesh(CommandLine):
703
703
"""
704
704
pialmesh
705
705
computes a pial surface model using an inner WM/GM mesh and a tissue fraction map.
706
-
706
+
707
707
http://brainsuite.org/processing/surfaceextraction/pial/
708
-
708
+
709
709
Examples
710
710
--------
711
711
@@ -716,9 +716,9 @@ class Pialmesh(CommandLine):
716
716
>>> pialmesh.inputs.inputTissueFractionFile = 'frac_file.nii.gz'
717
717
>>> pialmesh.inputs.inputMaskFile = example_data('mask.nii')
718
718
>>> results = pialmesh.run() #doctest: +SKIP
719
-
719
+
720
720
"""
721
-
721
+
722
722
input_spec = PialmeshInputSpec
723
723
output_spec = PialmeshOutputSpec
724
724
_cmd = 'pialmesh'
@@ -771,17 +771,17 @@ class SkullfinderOutputSpec(TraitedSpec):
771
771
class Skullfinder (CommandLine ):
772
772
"""
773
773
Skull and scalp segmentation algorithm.
774
-
774
+
775
775
Examples
776
776
--------
777
-
777
+
778
778
>>> from nipype.interfaces import brainsuite
779
779
>>> from nipype.testing import example_data
780
780
>>> skullfinder = brainsuite.Skullfinder()
781
781
>>> skullfinder.inputs.inputMRIFile = example_data('structural.nii')
782
782
>>> skullfinder.inputs.inputMaskFile = example_data('mask.nii')
783
783
>>> results = skullfinder.run() #doctest: +SKIP
784
-
784
+
785
785
"""
786
786
input_spec = SkullfinderInputSpec
787
787
output_spec = SkullfinderOutputSpec
@@ -836,15 +836,15 @@ class Hemisplit(CommandLine):
836
836
837
837
Examples
838
838
--------
839
-
839
+
840
840
>>> from nipype.interfaces import brainsuite
841
841
>>> from nipype.testing import example_data
842
842
>>> hemisplit = brainsuite.Hemisplit()
843
843
>>> hemisplit.inputs.inputSurfaceFile = 'input_surf.dfs'
844
844
>>> hemisplit.inputs.inputHemisphereLabelFile = 'label.nii'
845
845
>>> hemisplit.inputs.pialSurfaceFile = 'pial.dfs'
846
- >>> results = hemisplit.run() #doctest: +SKIP
847
-
846
+ >>> results = hemisplit.run() #doctest: +SKIP
847
+
848
848
"""
849
849
850
850
input_spec = HemisplitInputSpec
0 commit comments