Skip to content

Commit

Permalink
Merge branch 'release'
Browse files Browse the repository at this point in the history
  • Loading branch information
mcraig-ibme committed Nov 15, 2017
2 parents 45306a3 + 141c3b7 commit 0a07791
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions oxford_asl.in
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,10 @@ Usage_extended() {
echo " --elen : Length of each epoch in TIs"
echo " --eol : Overlap of each epoch in TIs- {deafult: 0}"
echo ""
echo " Miscellaneous "
echo " --model-options=<file> : File containing additional model options to be passed to BASIL/Fabber"
echo " This is an advanced setting for model-specific options ONLY"
echo " Do NOT include any standard oxford_asl options here"
echo ""
echo " Notes:"
echo " Input data - Any combination of label (tag) control images is accepted, see asl_file for more detailed"
Expand Down Expand Up @@ -827,6 +831,8 @@ takeargs=0;boolarg="";isbool="";
--cblip) cblip=$argument #blip reversed calibration image
takeargs=1;;
#
--model-options) model_options=$argument
takeargs=1;;
--verbose) verbose=$argument
takeargs=1;;
--debug) debug=1
Expand Down Expand Up @@ -1799,6 +1805,11 @@ if [ ! -z $devel ]; then
basil_options=$basil_options" --devel "
fi

if [ ! -z $model_options ]; then
echo "Appending additional BASIL options to $tempdir/basil_options.txt"
cat $model_options >> $tempdir/basil_options.txt
fi

Log "BASIL options ($tempdir/basil_options.txt):"
Log "----"
Log "`cat $tempdir/basil_options.txt`"
Expand Down

0 comments on commit 0a07791

Please sign in to comment.