Fmriprep is an fMRI data preprocessing pipeline that produces an output that can be submitted to a variety of group-level analyses, including task-based and resting-state fMRI, graph theoretical metrics, and surface or volume-based statistics. Some of the preprocessing steps performed by fmriprep include coregistration, normalization, unwarping, noise component extraction, segmentation, and skullstripping.
IMPORTANT: (October 2021) The memory and cpu limit flags in fmriprep do not work as intended.
The flags that are used to select an upper bound for fmriprep memory processes and CPUs do not work as intended. Therefore, if an fmriprep job exceeds its memory allocation, the job will hang and D processes will be generated in the compute node where the job is running. We are working on a solution to this but in the meantime we recommend carefully profiling memory consumption for a given type of dataset by running small-scale jobs, then gradually increasing the number of jobs when specific memory requirements have been established. Regarding the CPU flag not working, please use the --exclusive
flag if using sbatch
or -t auto
if using swarm. Please get in touch with HPC staff if you need help with profiling memory requirements or allocating CPUs.
--exclusive
flag if using sbatch
or -t auto
if using swarm.
Allocate an interactive session and run the program.
Sample session (user input in bold):
[user@biowulf]$ sinteractive salloc.exe: Pending job allocation 46116226 salloc.exe: job 46116226 queued and waiting for resources salloc.exe: job 46116226 has been allocated resources salloc.exe: Granted job allocation 46116226 salloc.exe: Waiting for resource configuration salloc.exe: Nodes cn3144 are ready for job [user@cn3144 ~]$ module load fmriprep [user@cn3144 ~]$ fmriprep -h [user@cn3144 ~]$ exit salloc.exe: Relinquishing job allocation 46116226 [user@biowulf ~]$
Create a batch input file (e.g. fmriprep.sh). For example (using test data below):
#!/bin/bash #SBATCH --job-name=fmriprep #SBATCH --gres=lscratch:20 #SBATCH --exclusive #SBATCH --mem=32g #SBATCH --time=72:00:00 module load fmriprep/20.2.1 tar -C /lscratch/${SLURM_JOB_ID} -xf /usr/local/apps/fmriprep/TEST_DATA/ds001.tar.gz fmriprep /lscratch/${SLURM_JOB_ID}/ds001 /lscratch/${SLURM_JOB_ID}/fmriprep.out.ds001 \ participant --participant_label sub-01 -w /lscratch/${SLURM_JOB_ID} \ --notrack --use-aroma
Submit this job using the Slurm sbatch command.
sbatch fmriprep.sh
Create a swarmfile (e.g. fmriprep.swarm). For example:
fmriprep /data/${USER}/BIDS-dataset/ds001/ /data/$USER/BIDS-dataset/fmriprep.out.ds001 \ participant --participant_label sub-01 -w /lscratch/${SLURM_JOB_ID} \ --use-aroma --notrack fmriprep /data/${USER}/BIDS-dataset/ds002/ /data/$USER/BIDS-dataset/fmriprep.out.ds002 \ participant --participant_label sub-02 -w /lscratch/${SLURM_JOB_ID} \ --use-aroma --notrack fmriprep /data/${USER}/BIDS-dataset/ds003/ /data/$USER/BIDS-dataset/fmriprep.out.ds003 \ participant --participant_label sub-03 -w /lscratch/${SLURM_JOB_ID} \ --use-aroma --notrack
Submit this job using the swarm command.
swarm -f fmriprep.swarm [--gres=lscratch:#] [-g #] -t auto --module fmriprepwhere
-gres=lscratch:# | Number of Gigabytes of local disk space allocated per process (1 line in the swarm command file) |
-g # | Number of Gigabytes of memory required for each process (1 line in the swarm command file) |
-t # | Number of threads/CPUs required for each process (1 line in the swarm command file). We set this to auto to allocate all CPUs in each node.
|
--module fmriprep | Loads the fmriprep module for each subjob in the swarm |