From 39d2c4e08cc81ed9c57b2fd3a874cc6c50c8c38f Mon Sep 17 00:00:00 2001 From: Taylor Hanayik <taylor.hanayik@ndcn.ox.ac.uk> Date: Fri, 29 Nov 2019 08:57:36 +0000 Subject: [PATCH] added Applyxfm4d tests --- .../applyxfm4D/applyxfm4D_fail/feedsInputs | 1 + .../applyxfm4D/applyxfm4D_fail/feedsRun | 33 +++++++++++++++++ .../applyxfm4D_fourdigit/feedsInputs | 1 + .../applyxfm4D/applyxfm4D_fourdigit/feedsRun | 34 +++++++++++++++++ .../applyxfm4D/applyxfm4D_nn/feedsInputs | 1 + unit_tests/applyxfm4D/applyxfm4D_nn/feedsRun | 33 +++++++++++++++++ .../applyxfm4D/applyxfm4D_sinc/feedsInputs | 1 + .../applyxfm4D/applyxfm4D_sinc/feedsRun | 33 +++++++++++++++++ .../applyxfm4D_singlematrix/.DS_Store | Bin 0 -> 6148 bytes .../applyxfm4D_singlematrix/feedsInputs | 1 + .../applyxfm4D_singlematrix/feedsRun | 34 +++++++++++++++++ .../applyxfm4D/applyxfm4D_spline/feedsInputs | 1 + .../applyxfm4D/applyxfm4D_spline/feedsRun | 33 +++++++++++++++++ .../applyxfm4D_transdir/feedsInputs | 1 + .../applyxfm4D/applyxfm4D_transdir/feedsRun | 33 +++++++++++++++++ .../applyxfm4D_trilinear/feedsInputs | 1 + .../applyxfm4D/applyxfm4D_trilinear/feedsRun | 33 +++++++++++++++++ .../applyxfm4D_userprefix/feedsInputs | 1 + .../applyxfm4D/applyxfm4D_userprefix/feedsRun | 35 ++++++++++++++++++ 19 files changed, 310 insertions(+) create mode 100644 unit_tests/applyxfm4D/applyxfm4D_fail/feedsInputs create mode 100755 unit_tests/applyxfm4D/applyxfm4D_fail/feedsRun create mode 100644 unit_tests/applyxfm4D/applyxfm4D_fourdigit/feedsInputs create mode 100755 unit_tests/applyxfm4D/applyxfm4D_fourdigit/feedsRun create mode 100644 unit_tests/applyxfm4D/applyxfm4D_nn/feedsInputs create mode 100755 unit_tests/applyxfm4D/applyxfm4D_nn/feedsRun create mode 100644 unit_tests/applyxfm4D/applyxfm4D_sinc/feedsInputs create mode 100755 unit_tests/applyxfm4D/applyxfm4D_sinc/feedsRun create mode 100644 unit_tests/applyxfm4D/applyxfm4D_singlematrix/.DS_Store create mode 100644 unit_tests/applyxfm4D/applyxfm4D_singlematrix/feedsInputs create mode 100755 unit_tests/applyxfm4D/applyxfm4D_singlematrix/feedsRun create mode 100644 unit_tests/applyxfm4D/applyxfm4D_spline/feedsInputs create mode 100755 unit_tests/applyxfm4D/applyxfm4D_spline/feedsRun create mode 100644 unit_tests/applyxfm4D/applyxfm4D_transdir/feedsInputs create mode 100755 unit_tests/applyxfm4D/applyxfm4D_transdir/feedsRun create mode 100644 unit_tests/applyxfm4D/applyxfm4D_trilinear/feedsInputs create mode 100755 unit_tests/applyxfm4D/applyxfm4D_trilinear/feedsRun create mode 100644 unit_tests/applyxfm4D/applyxfm4D_userprefix/feedsInputs create mode 100755 unit_tests/applyxfm4D/applyxfm4D_userprefix/feedsRun diff --git a/unit_tests/applyxfm4D/applyxfm4D_fail/feedsInputs b/unit_tests/applyxfm4D/applyxfm4D_fail/feedsInputs new file mode 100644 index 0000000..7782318 --- /dev/null +++ b/unit_tests/applyxfm4D/applyxfm4D_fail/feedsInputs @@ -0,0 +1 @@ +unit_tests/applyxfm4D diff --git a/unit_tests/applyxfm4D/applyxfm4D_fail/feedsRun b/unit_tests/applyxfm4D/applyxfm4D_fail/feedsRun new file mode 100755 index 0000000..e9301f0 --- /dev/null +++ b/unit_tests/applyxfm4D/applyxfm4D_fail/feedsRun @@ -0,0 +1,33 @@ +#!/usr/bin/env fslpython +""" +test applyxfm4D correct failure +""" +from subprocess import run, PIPE, CalledProcessError +from os.path import join +from tempfile import mkdtemp +import os +import sys + +OUTDIR = sys.argv[1] +INDIR = sys.argv[2] +FSLDIR = os.environ.get('FSLDIR') +FSLBIN = join(FSLDIR, 'bin') +# applyxfm4D fmri.nii.gz brain.nii.gz applyxfm4D_out f2b.mat -singlematrix -interp nn +def test_applyxfm4D_fail(): + cmd = [ + join(FSLBIN, 'applyxfm4D'), + join(INDIR, 'unit_tests', 'applyxfm4D', 'applyxfm4D_in.nii.gz'), + join(INDIR, 'unit_tests', 'applyxfm4D', 'applyxfm4D_ref.nii.gz'), + join(OUTDIR, 'applyxfm4D_out.nii.gz'), + join(INDIR, 'unit_tests', 'applyxfm4D', 'applyxfm4D_mat.mat') + ] + try: + run_result = run(cmd, stdout=PIPE, check=True) + stdout_string = run_result.stdout.decode('utf-8') + assert False + except CalledProcessError as e: + print("test_applyxfm4D correctly failed. This is good!") + assert e.returncode != 0 + +print("running test_applyxfm4D_fail()") +test_applyxfm4D_fail() diff --git a/unit_tests/applyxfm4D/applyxfm4D_fourdigit/feedsInputs b/unit_tests/applyxfm4D/applyxfm4D_fourdigit/feedsInputs new file mode 100644 index 0000000..7782318 --- /dev/null +++ b/unit_tests/applyxfm4D/applyxfm4D_fourdigit/feedsInputs @@ -0,0 +1 @@ +unit_tests/applyxfm4D diff --git a/unit_tests/applyxfm4D/applyxfm4D_fourdigit/feedsRun b/unit_tests/applyxfm4D/applyxfm4D_fourdigit/feedsRun new file mode 100755 index 0000000..51fac7f --- /dev/null +++ b/unit_tests/applyxfm4D/applyxfm4D_fourdigit/feedsRun @@ -0,0 +1,34 @@ +#!/usr/bin/env fslpython +""" +test applyxfm4D matfile directory option with 4 digit numbers in filenames +""" +from subprocess import run, PIPE +from os.path import join +from tempfile import mkdtemp +import os +import sys + +OUTDIR = sys.argv[1] +INDIR = sys.argv[2] +FSLDIR = os.environ.get('FSLDIR') +FSLBIN = join(FSLDIR, 'bin') +print(INDIR) +def test_applyxfm4D_fourdigit(): + # use trilinear interp for speed + cmd = [ + join(FSLBIN, 'applyxfm4D'), + join(INDIR, 'unit_tests', 'applyxfm4D', 'applyxfm4D_in.nii.gz'), + join(INDIR, 'unit_tests', 'applyxfm4D', 'applyxfm4D_ref.nii.gz'), + join(OUTDIR, 'applyxfm4D_out.nii.gz'), + join(INDIR, 'unit_tests', 'applyxfm4D', 'matfiles_four_digit'), + '-interp', + 'trilinear', + '-fourdigit' + ] + run_result = run(cmd, stdout=PIPE, check=True) + stdout_string = run_result.stdout.decode('utf-8') + # check that the files were written to disk + # the brain extracted input should exist + assert os.path.isfile(join(OUTDIR, 'applyxfm4D_out.nii.gz')) == True + +test_applyxfm4D_fourdigit() diff --git a/unit_tests/applyxfm4D/applyxfm4D_nn/feedsInputs b/unit_tests/applyxfm4D/applyxfm4D_nn/feedsInputs new file mode 100644 index 0000000..7782318 --- /dev/null +++ b/unit_tests/applyxfm4D/applyxfm4D_nn/feedsInputs @@ -0,0 +1 @@ +unit_tests/applyxfm4D diff --git a/unit_tests/applyxfm4D/applyxfm4D_nn/feedsRun b/unit_tests/applyxfm4D/applyxfm4D_nn/feedsRun new file mode 100755 index 0000000..20073bd --- /dev/null +++ b/unit_tests/applyxfm4D/applyxfm4D_nn/feedsRun @@ -0,0 +1,33 @@ +#!/usr/bin/env fslpython +""" +test applyxfm4D nn interp +""" +from subprocess import run, PIPE +from os.path import join +from tempfile import mkdtemp +import os +import sys + +OUTDIR = sys.argv[1] +INDIR = sys.argv[2] +FSLDIR = os.environ.get('FSLDIR') +FSLBIN = join(FSLDIR, 'bin') +print(INDIR) +def test_applyxfm4D_nn(): + cmd = [ + join(FSLBIN, 'applyxfm4D'), + join(INDIR, 'unit_tests', 'applyxfm4D', 'applyxfm4D_in.nii.gz'), + join(INDIR, 'unit_tests', 'applyxfm4D', 'applyxfm4D_ref.nii.gz'), + join(OUTDIR, 'applyxfm4D_out.nii.gz'), + join(INDIR, 'unit_tests', 'applyxfm4D', 'applyxfm4D_mat.mat'), + '-singlematrix', + '-interp', + 'nn' + ] + run_result = run(cmd, stdout=PIPE, check=True) + stdout_string = run_result.stdout.decode('utf-8') + # check that the files were written to disk + # the brain extracted input should exist + assert os.path.isfile(join(OUTDIR, 'applyxfm4D_out.nii.gz')) == True + +test_applyxfm4D_nn() diff --git a/unit_tests/applyxfm4D/applyxfm4D_sinc/feedsInputs b/unit_tests/applyxfm4D/applyxfm4D_sinc/feedsInputs new file mode 100644 index 0000000..7782318 --- /dev/null +++ b/unit_tests/applyxfm4D/applyxfm4D_sinc/feedsInputs @@ -0,0 +1 @@ +unit_tests/applyxfm4D diff --git a/unit_tests/applyxfm4D/applyxfm4D_sinc/feedsRun b/unit_tests/applyxfm4D/applyxfm4D_sinc/feedsRun new file mode 100755 index 0000000..008de98 --- /dev/null +++ b/unit_tests/applyxfm4D/applyxfm4D_sinc/feedsRun @@ -0,0 +1,33 @@ +#!/usr/bin/env fslpython +""" +test applyxfm4D sinc interp +""" +from subprocess import run, PIPE +from os.path import join +from tempfile import mkdtemp +import os +import sys + +OUTDIR = sys.argv[1] +INDIR = sys.argv[2] +FSLDIR = os.environ.get('FSLDIR') +FSLBIN = join(FSLDIR, 'bin') +print(INDIR) +def test_applyxfm4D_sinc(): + cmd = [ + join(FSLBIN, 'applyxfm4D'), + join(INDIR, 'unit_tests', 'applyxfm4D', 'applyxfm4D_in.nii.gz'), + join(INDIR, 'unit_tests', 'applyxfm4D', 'applyxfm4D_ref.nii.gz'), + join(OUTDIR, 'applyxfm4D_out.nii.gz'), + join(INDIR, 'unit_tests', 'applyxfm4D', 'applyxfm4D_mat.mat'), + '-singlematrix', + '-interp', + 'sinc' + ] + run_result = run(cmd, stdout=PIPE, check=True) + stdout_string = run_result.stdout.decode('utf-8') + # check that the files were written to disk + # the brain extracted input should exist + assert os.path.isfile(join(OUTDIR, 'applyxfm4D_out.nii.gz')) == True + +test_applyxfm4D_sinc() diff --git a/unit_tests/applyxfm4D/applyxfm4D_singlematrix/.DS_Store b/unit_tests/applyxfm4D/applyxfm4D_singlematrix/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6 GIT binary patch literal 6148 zcmeH~Jr2S!425mzP>H1@V-^m;4Wg<&0T*E43hX&L&p$$qDprKhvt+--jT7}7np#A3 zem<@ulZcFPQ@L2!n>{z**<q8>++&mCkOWA81W14cNZ<zv;LbK1Poaz?KmsK2CSc!( z0ynLxE!0092;Krf2c+FF_Fe*7ECH>lEfg7;MkzE(HCqgga^y>{tEnwC%0;vJ&^%eQ zLs35+`xjp>T0<F0fCPF1$Cyrb|F7^5{eNG?83~ZUUlGt@xh*qZDeu<Z%US-OSsOPv j)R!Z4KLME7ReXlK;d!wEw5GODWMKRea10D2@KpjYNUI8I literal 0 HcmV?d00001 diff --git a/unit_tests/applyxfm4D/applyxfm4D_singlematrix/feedsInputs b/unit_tests/applyxfm4D/applyxfm4D_singlematrix/feedsInputs new file mode 100644 index 0000000..7782318 --- /dev/null +++ b/unit_tests/applyxfm4D/applyxfm4D_singlematrix/feedsInputs @@ -0,0 +1 @@ +unit_tests/applyxfm4D diff --git a/unit_tests/applyxfm4D/applyxfm4D_singlematrix/feedsRun b/unit_tests/applyxfm4D/applyxfm4D_singlematrix/feedsRun new file mode 100755 index 0000000..76ce739 --- /dev/null +++ b/unit_tests/applyxfm4D/applyxfm4D_singlematrix/feedsRun @@ -0,0 +1,34 @@ +#!/usr/bin/env fslpython +""" +test applyxfm4D single matrix option +""" +from subprocess import run, PIPE +from os.path import join +from tempfile import mkdtemp +import os +import sys + +OUTDIR = sys.argv[1] +INDIR = sys.argv[2] +FSLDIR = os.environ.get('FSLDIR') +FSLBIN = join(FSLDIR, 'bin') +print(INDIR) +def test_applyxfm4D_singlematrix(): + # use nearestneighbour interp for speed + cmd = [ + join(FSLBIN, 'applyxfm4D'), + join(INDIR, 'unit_tests', 'applyxfm4D', 'applyxfm4D_in.nii.gz'), + join(INDIR, 'unit_tests', 'applyxfm4D', 'applyxfm4D_ref.nii.gz'), + join(OUTDIR, 'applyxfm4D_out.nii.gz'), + join(INDIR, 'unit_tests', 'applyxfm4D', 'applyxfm4D_mat.mat'), + '-singlematrix', + '-interp', + 'nn' + ] + run_result = run(cmd, stdout=PIPE, check=True) + stdout_string = run_result.stdout.decode('utf-8') + # check that the files were written to disk + # the brain extracted input should exist + assert os.path.isfile(join(OUTDIR, 'applyxfm4D_out.nii.gz')) == True + +test_applyxfm4D_singlematrix() diff --git a/unit_tests/applyxfm4D/applyxfm4D_spline/feedsInputs b/unit_tests/applyxfm4D/applyxfm4D_spline/feedsInputs new file mode 100644 index 0000000..7782318 --- /dev/null +++ b/unit_tests/applyxfm4D/applyxfm4D_spline/feedsInputs @@ -0,0 +1 @@ +unit_tests/applyxfm4D diff --git a/unit_tests/applyxfm4D/applyxfm4D_spline/feedsRun b/unit_tests/applyxfm4D/applyxfm4D_spline/feedsRun new file mode 100755 index 0000000..c9d2046 --- /dev/null +++ b/unit_tests/applyxfm4D/applyxfm4D_spline/feedsRun @@ -0,0 +1,33 @@ +#!/usr/bin/env fslpython +""" +test applyxfm4D spline interp +""" +from subprocess import run, PIPE +from os.path import join +from tempfile import mkdtemp +import os +import sys + +OUTDIR = sys.argv[1] +INDIR = sys.argv[2] +FSLDIR = os.environ.get('FSLDIR') +FSLBIN = join(FSLDIR, 'bin') +print(INDIR) +def test_applyxfm4D_spline(): + cmd = [ + join(FSLBIN, 'applyxfm4D'), + join(INDIR, 'unit_tests', 'applyxfm4D', 'applyxfm4D_in.nii.gz'), + join(INDIR, 'unit_tests', 'applyxfm4D', 'applyxfm4D_ref.nii.gz'), + join(OUTDIR, 'applyxfm4D_out.nii.gz'), + join(INDIR, 'unit_tests', 'applyxfm4D', 'applyxfm4D_mat.mat'), + '-singlematrix', + '-interp', + 'spline' + ] + run_result = run(cmd, stdout=PIPE, check=True) + stdout_string = run_result.stdout.decode('utf-8') + # check that the files were written to disk + # the brain extracted input should exist + assert os.path.isfile(join(OUTDIR, 'applyxfm4D_out.nii.gz')) == True + +test_applyxfm4D_spline() diff --git a/unit_tests/applyxfm4D/applyxfm4D_transdir/feedsInputs b/unit_tests/applyxfm4D/applyxfm4D_transdir/feedsInputs new file mode 100644 index 0000000..7782318 --- /dev/null +++ b/unit_tests/applyxfm4D/applyxfm4D_transdir/feedsInputs @@ -0,0 +1 @@ +unit_tests/applyxfm4D diff --git a/unit_tests/applyxfm4D/applyxfm4D_transdir/feedsRun b/unit_tests/applyxfm4D/applyxfm4D_transdir/feedsRun new file mode 100755 index 0000000..69428e8 --- /dev/null +++ b/unit_tests/applyxfm4D/applyxfm4D_transdir/feedsRun @@ -0,0 +1,33 @@ +#!/usr/bin/env fslpython +""" +test applyxfm4D matfile directory option +""" +from subprocess import run, PIPE +from os.path import join +from tempfile import mkdtemp +import os +import sys + +OUTDIR = sys.argv[1] +INDIR = sys.argv[2] +FSLDIR = os.environ.get('FSLDIR') +FSLBIN = join(FSLDIR, 'bin') +print(INDIR) +def test_applyxfm4D_transdir(): + # use trilinear interp for speed + cmd = [ + join(FSLBIN, 'applyxfm4D'), + join(INDIR, 'unit_tests', 'applyxfm4D', 'applyxfm4D_in.nii.gz'), + join(INDIR, 'unit_tests', 'applyxfm4D', 'applyxfm4D_ref.nii.gz'), + join(OUTDIR, 'applyxfm4D_out.nii.gz'), + join(INDIR, 'unit_tests', 'applyxfm4D', 'matfiles_five_digit'), + '-interp', + 'trilinear' + ] + run_result = run(cmd, stdout=PIPE, check=True) + stdout_string = run_result.stdout.decode('utf-8') + # check that the files were written to disk + # the brain extracted input should exist + assert os.path.isfile(join(OUTDIR, 'applyxfm4D_out.nii.gz')) == True + +test_applyxfm4D_transdir() diff --git a/unit_tests/applyxfm4D/applyxfm4D_trilinear/feedsInputs b/unit_tests/applyxfm4D/applyxfm4D_trilinear/feedsInputs new file mode 100644 index 0000000..7782318 --- /dev/null +++ b/unit_tests/applyxfm4D/applyxfm4D_trilinear/feedsInputs @@ -0,0 +1 @@ +unit_tests/applyxfm4D diff --git a/unit_tests/applyxfm4D/applyxfm4D_trilinear/feedsRun b/unit_tests/applyxfm4D/applyxfm4D_trilinear/feedsRun new file mode 100755 index 0000000..285e95f --- /dev/null +++ b/unit_tests/applyxfm4D/applyxfm4D_trilinear/feedsRun @@ -0,0 +1,33 @@ +#!/usr/bin/env fslpython +""" +test applyxfm4D trilinear interp +""" +from subprocess import run, PIPE +from os.path import join +from tempfile import mkdtemp +import os +import sys + +OUTDIR = sys.argv[1] +INDIR = sys.argv[2] +FSLDIR = os.environ.get('FSLDIR') +FSLBIN = join(FSLDIR, 'bin') +print(INDIR) +def test_applyxfm4D_trilinear(): + cmd = [ + join(FSLBIN, 'applyxfm4D'), + join(INDIR, 'unit_tests', 'applyxfm4D', 'applyxfm4D_in.nii.gz'), + join(INDIR, 'unit_tests', 'applyxfm4D', 'applyxfm4D_ref.nii.gz'), + join(OUTDIR, 'applyxfm4D_out.nii.gz'), + join(INDIR, 'unit_tests', 'applyxfm4D', 'applyxfm4D_mat.mat'), + '-singlematrix', + '-interp', + 'trilinear' + ] + run_result = run(cmd, stdout=PIPE, check=True) + stdout_string = run_result.stdout.decode('utf-8') + # check that the files were written to disk + # the brain extracted input should exist + assert os.path.isfile(join(OUTDIR, 'applyxfm4D_out.nii.gz')) == True + +test_applyxfm4D_trilinear() diff --git a/unit_tests/applyxfm4D/applyxfm4D_userprefix/feedsInputs b/unit_tests/applyxfm4D/applyxfm4D_userprefix/feedsInputs new file mode 100644 index 0000000..7782318 --- /dev/null +++ b/unit_tests/applyxfm4D/applyxfm4D_userprefix/feedsInputs @@ -0,0 +1 @@ +unit_tests/applyxfm4D diff --git a/unit_tests/applyxfm4D/applyxfm4D_userprefix/feedsRun b/unit_tests/applyxfm4D/applyxfm4D_userprefix/feedsRun new file mode 100755 index 0000000..1679e82 --- /dev/null +++ b/unit_tests/applyxfm4D/applyxfm4D_userprefix/feedsRun @@ -0,0 +1,35 @@ +#!/usr/bin/env fslpython +""" +test applyxfm4D matfile directory option with user prefix +""" +from subprocess import run, PIPE +from os.path import join +from tempfile import mkdtemp +import os +import sys + +OUTDIR = sys.argv[1] +INDIR = sys.argv[2] +FSLDIR = os.environ.get('FSLDIR') +FSLBIN = join(FSLDIR, 'bin') +print(INDIR) +def test_applyxfm4D_userprefix(): + # use trilinear interp for speed + cmd = [ + join(FSLBIN, 'applyxfm4D'), + join(INDIR, 'unit_tests', 'applyxfm4D', 'applyxfm4D_in.nii.gz'), + join(INDIR, 'unit_tests', 'applyxfm4D', 'applyxfm4D_ref.nii.gz'), + join(OUTDIR, 'applyxfm4D_out.nii.gz'), + join(INDIR, 'unit_tests', 'applyxfm4D', 'matfiles_user_prefix'), + '-interp', + 'trilinear', + '-userprefix', + 'myprefix_' + ] + run_result = run(cmd, stdout=PIPE, check=True) + stdout_string = run_result.stdout.decode('utf-8') + # check that the files were written to disk + # the brain extracted input should exist + assert os.path.isfile(join(OUTDIR, 'applyxfm4D_out.nii.gz')) == True + +test_applyxfm4D_userprefix() -- GitLab