コード例 #1
0
def test_SurfaceTransform_inputs():
    input_map = dict(
        args=dict(argstr='%s', ),
        environ=dict(
            nohash=True,
            usedefault=True,
        ),
        hemi=dict(
            argstr='--hemi %s',
            mandatory=True,
        ),
        ignore_exception=dict(
            nohash=True,
            usedefault=True,
        ),
        out_file=dict(
            argstr='--tval %s',
            genfile=True,
        ),
        reshape=dict(argstr='--reshape', ),
        reshape_factor=dict(argstr='--reshape-factor', ),
        source_annot_file=dict(
            argstr='--sval-annot %s',
            mandatory=True,
            xor=['source_file'],
        ),
        source_file=dict(
            argstr='--sval %s',
            mandatory=True,
            xor=['source_annot_file'],
        ),
        source_subject=dict(
            argstr='--srcsubject %s',
            mandatory=True,
        ),
        source_type=dict(
            argstr='--sfmt %s',
            requires=['source_file'],
        ),
        subjects_dir=dict(),
        target_ico_order=dict(argstr='--trgicoorder %d', ),
        target_subject=dict(
            argstr='--trgsubject %s',
            mandatory=True,
        ),
        target_type=dict(argstr='--tfmt %s', ),
        terminal_output=dict(
            mandatory=True,
            nohash=True,
        ),
    )
    inputs = SurfaceTransform.input_spec()

    for key, metadata in input_map.items():
        for metakey, value in metadata.items():
            yield assert_equal, getattr(inputs.traits()[key], metakey), value
コード例 #2
0
def test_SurfaceTransform_inputs():
    input_map = dict(ignore_exception=dict(nohash=True,
    usedefault=True,
    ),
    hemi=dict(mandatory=True,
    argstr='--hemi %s',
    ),
    out_file=dict(argstr='--tval %s',
    genfile=True,
    ),
    source_subject=dict(mandatory=True,
    argstr='--srcsubject %s',
    ),
    reshape=dict(argstr='--reshape',
    ),
    args=dict(argstr='%s',
    ),
    target_ico_order=dict(argstr='--trgicoorder %d',
    ),
    target_type=dict(argstr='--tfmt %s',
    ),
    reshape_factor=dict(argstr='--reshape-factor',
    ),
    source_type=dict(requires=['source_file'],
    argstr='--sfmt %s',
    ),
    terminal_output=dict(mandatory=True,
    nohash=True,
    ),
    environ=dict(nohash=True,
    usedefault=True,
    ),
    subjects_dir=dict(),
    source_file=dict(mandatory=True,
    argstr='--sval %s',
    xor=['source_annot_file'],
    ),
    target_subject=dict(mandatory=True,
    argstr='--trgsubject %s',
    ),
    source_annot_file=dict(mandatory=True,
    argstr='--sval-annot %s',
    xor=['source_file'],
    ),
    )
    inputs = SurfaceTransform.input_spec()

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