Skip to content
Snippets Groups Projects
Commit 27f7fafa authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

bedpostx tests

parent b3c54fc5
No related branches found
No related tags found
No related merge requests found
...@@ -8,4 +8,8 @@ Run the tests from the repository root as follows: ...@@ -8,4 +8,8 @@ Run the tests from the repository root as follows:
pyfeeds -c pyfeeds_config.cfg -o /path/to/output_direcfory . pyfeeds -c pyfeeds_config.cfg -o /path/to/output_direcfory .
Before running the tests, make sure to update the paths in Before running the tests, make sure to update the paths in
`pyfeeds_config.cfg`. `pyfeeds_config.cfg`.
\ No newline at end of file
Note that some tests (e.g. `fsl_course/fdt/bedpostx_gpu/`) need to be run on a
CUDA-capable machine.
\ No newline at end of file
fsl_course_data/fdt2/subj1
#!/bin/bash
set -e
unset SGE_ROOT
outdir=$1
datadir=$2
basedir=$datadir/fsl_course_data/fdt2/subj1
# make a cut-down data set,
# with just one slice
mkdir $outdir/subj1
cp $basedir/bvals $outdir/subj1/
cp $basedir/bvecs $outdir/subj1/
fslroi $basedir/data $outdir/subj1/data 0 -1 0 -1 31 1
fslroi $basedir/nodif_brain_mask $outdir/subj1/nodif_brain_mask 0 -1 0 -1 31 1
bedpostx $outdir/subj1 --nf=2 --fudge=1 --bi=1000 --seed=1234
chmod -R u+w $outdir/subj1
rm -r $outdir/subj1
fsl_course_data/fdt2/subj1
#!/bin/bash
# This test needs to be executed
# on a CUDA-capable machine
set -e
unset SGE_ROOT
outdir=$1
datadir=$2
cp -r $datadir/fsl_course_data/fdt2/subj1 $outdir/
bedpostx_gpu $outdir/subj1 --nf=2 --fudge=1 --bi=1000 --seed=1234
chmod -R u+w $outdir/subj1
rm -r $outdir/subj1
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment