diff --git a/fsl/wrappers/__init__.py b/fsl/wrappers/__init__.py old mode 100644 new mode 100755 index 19292be71de8ca7dc34a251c522188a8750e8e50..7848a07b7811976eccae3ad06bc6e6ae59ca8aa2 --- a/fsl/wrappers/__init__.py +++ b/fsl/wrappers/__init__.py @@ -110,4 +110,5 @@ from .misc import (fslreorient2std, # noqa slicer, cluster, gps) +from .epi_reg import epi_reg from . import tbss # noqa diff --git a/fsl/wrappers/epi_reg.py b/fsl/wrappers/epi_reg.py new file mode 100755 index 0000000000000000000000000000000000000000..fe955689aaa3b497df65a55c3cac21a9833158c2 --- /dev/null +++ b/fsl/wrappers/epi_reg.py @@ -0,0 +1,41 @@ +#!/usr/bin/env python +# +# epi_reg.py - Wrapper for the epi_reg command. +# +# Author: +# +"""This module provides the :func:`epi_reg` function, a wrapper for the FSL +`epi_reg <https://fsl.fmrib.ox.ac.uk/fsl/fslwiki/FLIRT/UserGuide#epi_reg>`_ command. +""" + +import fsl.utils.assertions as asrt +from . import wrapperutils as wutils + +@wutils.fileOrImage('epi', 't1', 't1brain', 'fmap', 'fmapmag', 'fmapmagbrain', 'gdc', 'wmseg', 'weight', outprefix='out') +@wutils.fslwrapper +def epi_reg(epi, t1, t1brain, out='epi_reg', **kwargs): + """Wrapper for the ``epi_reg`` command. + + :arg epi: Input EPI image + :arg t1: Input wholehead T1 image + :arg t1brain: Input brain extracted T1 image + :arg out: Output name + """ + asrt.assertIsNifti(epi) + asrt.assertIsNifti(t1) + asrt.assertIsNifti(t1brain) + + valmap = { + 'nofmapreg' : wutils.SHOW_IF_TRUE, + 'noclean' : wutils.SHOW_IF_TRUE, + 'v' : wutils.SHOW_IF_TRUE, + } + + cmd = ['epi_reg', '--epi='+epi, '--t1='+t1, '--t1brain='+t1brain, '--out='+out] + + cmd += wutils.applyArgStyle('--=', + valmap=valmap, + singlechar_args=True, + **kwargs) + + return cmd diff --git a/tests/test_wrappers/test_wrappers.py b/tests/test_wrappers/test_wrappers.py old mode 100644 new mode 100755 index 2c8b9b1aadc4e2ee4c13bad6e3c22a9aebeccf1d..5eaea8177f141736362bfdaea0926ccedf4dcd2e --- a/tests/test_wrappers/test_wrappers.py +++ b/tests/test_wrappers/test_wrappers.py @@ -93,6 +93,14 @@ def test_flirt(): assert checkResult(result.stdout[0], *expected) +def test_epi_reg(): + with asrt.disabled(), run.dryrun(), mockFSLDIR(bin=('epi_reg',)) as fsldir: + epi_reg = op.join(fsldir, 'bin', 'epi_reg') + result = fw.epi_reg('epi', 't1', 't1brain', 'out') + expected = epi_reg + ' --epi=epi --t1=t1 --t1brain=t1brain --out=out' + assert result.stdout[0] == expected + + def test_applyxfm(): with asrt.disabled(), run.dryrun(), mockFSLDIR(bin=('flirt',)) as fsldir: flirt = op.join(fsldir, 'bin', 'flirt')