-
Notifications
You must be signed in to change notification settings - Fork 0
Module 6 FSL ANAT
Jared Tanner edited this page Feb 24, 2026
·
3 revisions
FSL is a widely used software suite for analyzing structural and functional MRI data. In this assignment, you will run one T1-weighted structural scan through the fsl_anat pipeline on HiPerGator.
Reference overview of FSL tools: https://fsl.fmrib.ox.ac.uk/fsl/fslwiki/FslOverview
- Choose one subject from your ADNI BIDS dataset.
- Identify a single T1-weighted NIfTI file to use as input (
.nii.gz). - Run
fsl_anaton HiPerGator (either via SBATCH or a HiPerGator Desktop session). - Submit the pipeline log file (
log.txt).
-
Input file: a valid structural MRI NIfTI file:
something.nii.gz(typically a T1w image). -
Compute request (minimum):
- RAM: 6 GB or more
- Time: 2 hours or more
- Output naming: use a clear subject identifier for the output folder name (e.g., your BIDS subject ID).
Run these commands on HiPerGator from the directory where you want outputs saved:
module load fsl
fsl_anat -i /path/to/input_T1w.nii.gz -o sub-XXXXNotes:
- Replace
/path/to/input_T1w.nii.gzwith the full path to your input file. - Replace
sub-XXXXwith your subject ID (or another clear label). This becomes the output directory name.
Option A — SBATCH script
- Create an SBATCH script that:
- requests ≥ 6 GB RAM and ≥ 2 hours
- loads the
fslmodule - runs the
fsl_anatcommand above
Option B — HiPerGator Desktop session
- Start a Desktop session with ≥ 6 GB RAM and ≥ 2 hours
- Open a terminal
- Run the commands above
You are expected to use the skills you have already practiced in this course to set up either option.
Upload the log.txt file produced by your run.
Typical locations:
- It should be inside the output directory created by
-o sub-XXXX.anat/(possibly within subfolders depending on howfsl_anatran).