You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: triton/apps/fmriprep.rst
+38-9Lines changed: 38 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,11 @@
1
1
FMRIprep
2
2
~~~~~~~~
3
3
4
-
.. admonition:: Warning: page not updated for current Triton
4
+
.. admonition:: As of 26/09/2025 fmriprep has changed.
5
5
:class: warning, triton-v2-apps
6
+
7
+
The new version of fmriprep has a different syntax. You can load a previous version by running ``module load apptainer-fmriprep/VERSION``
6
8
7
-
This page hasn't been updated since Triton was completely upgraded
8
-
in May 2024. The software might not be installed and the old
9
-
information below might not work anymore (or might need adapting).
10
-
If you need this software, :ref:`open an issue <issuetracker>` and
11
-
tell us so we can reinstall/update it.
12
9
13
10
This page describe how to use fmriprep on Triton.
14
11
@@ -19,9 +16,41 @@ This page describe how to use fmriprep on Triton.
19
16
fmriprep is installed as an Apptainer container. By default it will always run the newest version installed on triton. If you need a version that is not currently installed on triton, please open an issue at https://version.aalto.fi/gitlab/AaltoScienceIT/triton/issues
20
17
21
18
22
-
=============
23
-
How to run it
24
-
=============
19
+
=======================
20
+
How to run new versions
21
+
=======================
22
+
23
+
Here an example script with open data
24
+
25
+
::
26
+
27
+
#!/bin/bash
28
+
#SBATCH --time=2-00:00:00
29
+
#SBATCH --mem-per-cpu=50G
30
+
#SBATCH --array=1 # here one can change
31
+
#SBATCH --output=logs/fmriprep_%A_%a.out
32
+
#SBATCH --cpus-per-task=6
33
+
34
+
n=$SLURM_ARRAY_TASK_ID
35
+
iteration=`sed -n "${n} p" subjects_list.txt` # Get n-th line (1-indexed) of the file
The main difference is that we are not using anymore apptainer_wrapper which used to take care of all the ``-B`` mounting of folders.
50
+
51
+
=======================
52
+
How to run old versions
53
+
=======================
25
54
26
55
Here an example to run fmriprep for four subject, using an array. The raw data in BIDS format are in the path ``<path-to-bids>``, then you can create a folder for the derivatives that is different than the BIDS folder ``<path-to-your-derivatives-folder>``. Also create a temporary folder under your scratch/work folders for storing temporary files ``<path-to-your-scratch-temporary-folder>`` for example ``/scratch/work/USERNAME/tmp/``. The content of this folder should be removed after fmriprep has finished.
0 commit comments