def test_WarpPointsToStd_outputs(): output_map = dict(out_file=dict(), ) outputs = WarpPointsToStd.output_spec() for key, metadata in output_map.items(): for metakey, value in metadata.items(): yield assert_equal, getattr(outputs.traits()[key], metakey), value
def test_WarpPointsToStd_inputs(): input_map = dict( args=dict(argstr='%s', ), coord_mm=dict( argstr='-mm', xor=['coord_vox'], ), coord_vox=dict( argstr='-vox', xor=['coord_mm'], ), environ=dict( nohash=True, usedefault=True, ), ignore_exception=dict( nohash=True, usedefault=True, ), img_file=dict( argstr='-img %s', mandatory=True, ), in_coords=dict( argstr='%s', mandatory=True, position=-1, ), out_file=dict( name_source='in_coords', name_template='%s_warped', output_name='out_file', ), premat_file=dict(argstr='-premat %s', ), std_file=dict( argstr='-std %s', mandatory=True, ), terminal_output=dict( mandatory=True, nohash=True, ), warp_file=dict( argstr='-warp %s', xor=['xfm_file'], ), xfm_file=dict( argstr='-xfm %s', xor=['warp_file'], ), ) inputs = WarpPointsToStd.input_spec() for key, metadata in input_map.items(): for metakey, value in metadata.items(): yield assert_equal, getattr(inputs.traits()[key], metakey), value
def test_WarpPointsToStd_inputs(): input_map = dict(args=dict(argstr='%s', ), coord_mm=dict(argstr='-mm', xor=['coord_vox'], ), coord_vox=dict(argstr='-vox', xor=['coord_mm'], ), environ=dict(nohash=True, usedefault=True, ), ignore_exception=dict(nohash=True, usedefault=True, ), img_file=dict(argstr='-img %s', mandatory=True, ), in_coords=dict(argstr='%s', mandatory=True, position=-1, ), out_file=dict(name_source='in_coords', name_template='%s_warped', output_name='out_file', ), premat_file=dict(argstr='-premat %s', ), std_file=dict(argstr='-std %s', mandatory=True, ), terminal_output=dict(mandatory=True, nohash=True, ), warp_file=dict(argstr='-warp %s', xor=['xfm_file'], ), xfm_file=dict(argstr='-xfm %s', xor=['warp_file'], ), ) inputs = WarpPointsToStd.input_spec() for key, metadata in input_map.items(): for metakey, value in metadata.items(): yield assert_equal, getattr(inputs.traits()[key], metakey), value