File tree Expand file tree Collapse file tree 3 files changed +20
-3
lines changed Expand file tree Collapse file tree 3 files changed +20
-3
lines changed Original file line number Diff line number Diff line change 695
695
"affiliation" : " MIT, HMS" ,
696
696
"name" : " Ghosh, Satrajit" ,
697
697
"orcid" : " 0000-0002-5312-6729"
698
+ },
699
+ {
700
+ "affiliation" : " Holland Bloorview Kids Rehabilitation Hospital" ,
701
+ "name" : " Tilley II, Steven" ,
702
+ "orcid" : " 0000-0003-4853-5082"
698
703
}
699
704
],
700
705
"keywords" : [
Original file line number Diff line number Diff line change @@ -14,6 +14,11 @@ def test_ImageStats_inputs():
14
14
argstr = '%s' ,
15
15
extensions = None ,
16
16
mandatory = True ,
17
+ position = 3 ,
18
+ ),
19
+ index_mask_file = dict (
20
+ argstr = '-K %s' ,
21
+ extensions = None ,
17
22
position = 2 ,
18
23
),
19
24
mask_file = dict (
@@ -23,7 +28,7 @@ def test_ImageStats_inputs():
23
28
op_string = dict (
24
29
argstr = '%s' ,
25
30
mandatory = True ,
26
- position = 3 ,
31
+ position = 4 ,
27
32
),
28
33
output_type = dict (),
29
34
split_4d = dict (
Original file line number Diff line number Diff line change @@ -725,18 +725,25 @@ class ImageStatsInputSpec(FSLCommandInputSpec):
725
725
exists = True ,
726
726
argstr = "%s" ,
727
727
mandatory = True ,
728
- position = 2 ,
728
+ position = 3 ,
729
729
desc = 'input file to generate stats of' )
730
730
op_string = traits .Str (
731
731
argstr = "%s" ,
732
732
mandatory = True ,
733
- position = 3 ,
733
+ position = 4 ,
734
734
desc = ("string defining the operation, options are "
735
735
"applied in order, e.g. -M -l 10 -M will "
736
736
"report the non-zero mean, apply a threshold "
737
737
"and then report the new nonzero mean" ))
738
738
mask_file = File (
739
739
exists = True , argstr = "" , desc = 'mask file used for option -k %s' )
740
+ index_mask_file = File (
741
+ exists = True ,
742
+ argstr = "-K %s" ,
743
+ position = 2 ,
744
+ desc = "generate seperate n submasks from indexMask, "
745
+ "for indexvalues 1..n where n is the maximum index "
746
+ "value in indexMask, and generate statistics for each submask" )
740
747
741
748
742
749
class ImageStatsOutputSpec (TraitedSpec ):
You can’t perform that action at this time.
0 commit comments