Example #1
0
def test_WarpPoints_outputs():
    output_map = dict(out_file=dict(), )
    outputs = WarpPoints.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_WarpPoints_outputs():
    output_map = dict(out_file=dict(),
    )
    outputs = WarpPoints.output_spec()

    for key, metadata in output_map.items():
        for metakey, value in metadata.items():
            yield assert_equal, getattr(outputs.traits()[key], metakey), value
Example #3
0
def test_WarpPoints_inputs():
    input_map = dict(
        args=dict(argstr='%s', ),
        coord_mm=dict(
            argstr='-mm',
            xor=['coord_vox'],
        ),
        coord_vox=dict(
            argstr='-vox',
            xor=['coord_mm'],
        ),
        dest_file=dict(
            argstr='-dest %s',
            mandatory=True,
        ),
        environ=dict(
            nohash=True,
            usedefault=True,
        ),
        ignore_exception=dict(
            nohash=True,
            usedefault=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',
        ),
        src_file=dict(
            argstr='-src %s',
            mandatory=True,
        ),
        terminal_output=dict(nohash=True, ),
        warp_file=dict(
            argstr='-warp %s',
            xor=['xfm_file'],
        ),
        xfm_file=dict(
            argstr='-xfm %s',
            xor=['warp_file'],
        ),
    )
    inputs = WarpPoints.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_WarpPoints_inputs():
    input_map = dict(args=dict(argstr='%s',
    ),
    coord_mm=dict(argstr='-mm',
    xor=['coord_vox'],
    ),
    coord_vox=dict(argstr='-vox',
    xor=['coord_mm'],
    ),
    dest_file=dict(argstr='-dest %s',
    mandatory=True,
    ),
    environ=dict(nohash=True,
    usedefault=True,
    ),
    ignore_exception=dict(nohash=True,
    usedefault=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',
    ),
    src_file=dict(argstr='-src %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 = WarpPoints.input_spec()

    for key, metadata in input_map.items():
        for metakey, value in metadata.items():
            yield assert_equal, getattr(inputs.traits()[key], metakey), value