Skip to content
fsl.rst 816 B
Newer Older
Michael Krause's avatar
Michael Krause committed
FSL
===
Michael Krause's avatar
Michael Krause committed
We are automatically following the FSL 5 release history of `Neurodebian <https://neuro.debian.net>`_.

To use FSL in your jobs, activate it like this:

Michael Krause's avatar
Michael Krause committed
.. code-block:: bash

   source /etc/fsl/5.0/fsl.sh

Afterwards the :file:`PATH` variable should be set correctly.

We have set up a running version of `FSL Fix <http://fsl.fmrib.ox.ac.uk/fsl/fslwiki/FIX>`_.
Currently it is not using FSL's internal qsub so it only makes sense to
parallelize over a number of subjects. Example:

.. code-block:: bash
Michael Krause's avatar
Michael Krause committed

    for icadir in *ica ; do
        echo "module load fsl_fix" >> tmpjob
        echo "source /etc/fsl/5.0/fsl.sh" >> tmpjob
        echo "fix ${icadir} /opt/software/fix/1.06/training_files/Standard.RData 20" >> tmpjob
        qsub -N fix_foobar -j oe -d. tmpjob
        rm -f tmjob
    done