FreeSurfer: Difference between revisions
No edit summary |
No edit summary |
||
(25 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
<languages /> | |||
<translate> | |||
=Introduction= <!--T:1--> | |||
[https://surfer.nmr.mgh.harvard.edu/fswiki/FreeSurferWiki FreeSurfer] is a set of tools for the analysis and visualization of structural and functional brain imaging data. FreeSurfer contains a fully automatic structural imaging stream for processing cross sectional and longitudinal data. | |||
= | =FreeSurfer 5.3 as a global module= <!--T:2--> | ||
In our software stack, you may load the <code>freesurfer/5.3.0</code> module. | |||
<!--T:3--> | |||
FreeSurfer comes up with a script <code>FreeSurferEnv.sh</code> that should be sourced to correctly set up environment variables such as PATH and PERL5LIB: | |||
</translate> | |||
FreeSurfer | {{Commands | ||
< | |module load freesurfer/5.3.0 | ||
|source $EBROOTFREESURFER/FreeSurferEnv.sh | |||
=FreeSurfer 6.0 and newer versions= | }} | ||
Due to a change in the [https://surfer.nmr.mgh.harvard.edu/fswiki/FreeSurferSoftwareLicense license terms], we ''' | <translate> | ||
=FreeSurfer 6.0 and newer versions= <!--T:4--> | |||
Due to a change in the [https://surfer.nmr.mgh.harvard.edu/fswiki/FreeSurferSoftwareLicense license terms], we '''no longer''' install the code as a central module. If needed, please install it in your /home directory or in your /project space with EasyBuild. Please follow the instructions below and if needed, contact the [[Technical Support|technical support]] for assistance. | |||
== | ==Download the software== <!--T:5--> | ||
Select a version (6.0.0 or newer) in the [https://surfer.nmr.mgh.harvard.edu/pub/dist/freesurfer/ download repository] and download the corresponding <code>freesurfer-Linux*vX.Y.Z.tar.gz</code> archive on your favorite cluster. | |||
==Installation in your /home directory with EasyBuild== <!--T:6--> | |||
The following procedure will install FreeSurfer 6.0.0 in <code>/home/$USER/.local/easybuild/software/2020/Core/freesurfer/6.0.0/</code>. The installation requires some memory and due to the restrictions of memory stack size on the login nodes on our clusters, the installation may fail because of the memory. To overcome this issue, you may need to use an [[Running_jobs#Interactive_jobs|interactive job]] by asking for enough memory (8 GB or so) to install the code. | |||
<!--T:7--> | |||
# Go to the folder that contains the <code>freesurfer-Linux-centos6_x86_64-stable-pub-v6.0.0.tar.gz</code> archive. | |||
# Unload all modules with <code>module purge</code>. | |||
# Install with [[EasyBuild]] using <code>eb FreeSurfer-6.0.0-centos6_x86_64.eb --disable-enforce-checksums</code>. | |||
# Register for the FreeSurfer license key [https://surfer.nmr.mgh.harvard.edu/registration.html]. | |||
# Your user license will have to go in | |||
{{Commands | {{Commands | ||
|module load freesurfer/6.0.0 | |module load freesurfer/6.0.0 | ||
Line 33: | Line 35: | ||
}} | }} | ||
<!--T:8--> | |||
Use nano or any other text editor of your choice and create a file <code>/home/$USER/.license</code> and add the license text (example): | Use nano or any other text editor of your choice and create a file <code>/home/$USER/.license</code> and add the license text (example): | ||
</translate> | |||
<pre> | <pre> | ||
name.name@university.ca | name.name@university.ca | ||
Line 40: | Line 44: | ||
ABCd0EFgHijKl | ABCd0EFgHijKl | ||
</pre> | </pre> | ||
<translate> | |||
<!--T:9--> | |||
To load the private module: | To load the private module: | ||
<code>module load freesurfer/6.0.0</code> | <code>module load freesurfer/6.0.0</code> | ||
<!--T:10--> | |||
As of August 2020, we were supporting up to version 6.0.1. You can check for [https://github.com/ComputeCanada/easybuild-easyconfigs/tree/computecanada-master/easybuild/easyconfigs/f/FreeSurfer newer versions here]. | |||
==EasyBuild recipes== <!--T:11--> | |||
You can check the EasyBuild recipes for FreeSurfer [https://github.com/ComputeCanada/easybuild-easyconfigs/tree/computecanada-master/easybuild/easyconfigs/f/FreeSurfer online] on GitHub or via a command line ,<code>eb -S FreeSurfer</code>, from any of our clusters. If the version you are looking for is not listed, you may try to install the program with the option <code>--try-software-version=<the new version></code>. If that did not work, please contact the [[Technical support/en|technical support]] for help. | |||
==Installation in a shared folder== <!--T:12--> | |||
Using EasyBuild, it is possible to install the program in a shared location (like /project) and make the code available for any other member of the group. The following will install FreeSurfer under the directory <code>/home/$USER/projects/def-someuser/$USER/software</code> and the module under the user's directory <code>/home/$USER/.local/easybuild/modules/2020/Core/freesurfer</code>. | |||
</translate> | |||
<pre> | <pre> | ||
newgrp def-someuser | newgrp def-someuser | ||
installdir=/home/$USER/projects/def-someuser/$USER | installdir=/home/$USER/projects/def-someuser/$USER | ||
moduledir=/home/$USER/.local/easybuild/modules/ | moduledir=/home/$USER/.local/easybuild/modules/2020 | ||
pathtosrc=/home/$USER/software | pathtosrc=/home/$USER/software | ||
eb FreeSurfer-6.0.1-centos6_x86_64.eb --installpath-modules=${moduledir} --prefix=${installdir} --sourcepath=${pathtosrc} | eb FreeSurfer-6.0.1-centos6_x86_64.eb --installpath-modules=${moduledir} --prefix=${installdir} --sourcepath=${pathtosrc} | ||
</pre> | </pre> | ||
<translate> | |||
<!--T:14--> | |||
If it complains about '''checksums''', add the option <code>--disable-enforce-checksums</code> to the <code>eb</code> command. | If it complains about '''checksums''', add the option <code>--disable-enforce-checksums</code> to the <code>eb</code> command. | ||
<!--T:15--> | |||
To make the program accessible for all members of the group, two more steps are required: | To make the program accessible for all members of the group, two more steps are required: | ||
* You need to give all members of your group read and exec access to the installation directory <code>/home/$USER/projects/def-someuser/$USER | <!--T:16--> | ||
* Each member of the group will need to put the module file in their own home directories. The module file is | * You need to give all members of your group read and exec access to the installation directory <code>/home/$USER/projects/def-someuser/$USER</code>. To see how to give them access to this directory, please read [[Sharing_data#Changing_the_permissions_of_existing_files|Changing the permissions of existing files]]. | ||
* Each member of the group will need to put the module file in their own /home directories. The module file <code>6.0.1.lua</code> is located under the directory: | |||
<pre> | <pre> | ||
/home/$USER/.local/easybuild/ | /home/$USER/.local/easybuild/modules/2020/Core/freesurfer/</code> | ||
</pre> | </pre> | ||
Each member of the group will need to create the directory <code>/home/$USER/.local/easybuild/ | <!--T:17--> | ||
Each member of the group will need to create the directory <code>/home/$USER/.local/easybuild/modules/2020/Core/freesurfer</code> where they will put the file <code>6.0.1.lua</code>: | |||
</translate> | |||
{{Commands | {{Commands | ||
|mkdir -p /home/$USER/.local/easybuild/ | |mkdir -p /home/$USER/.local/easybuild/modules/2020/Core/freesurfer | ||
|cp 6.0.1.lua /home/$USER/.local/easybuild/ | |cp 6.0.1.lua /home/$USER/.local/easybuild/modules/2020/Core/freesurfer/ | ||
}} | }} | ||
<translate> | |||
<!--T:18--> | |||
The above will set the module (only the module file that points to the installation directory under /project) in their own directory. | |||
<!--T:19--> | |||
The module can be loaded from their own accounts using: | The module can be loaded from their own accounts using: | ||
<!--T:20--> | |||
{{Commands | {{Commands | ||
|module load freesurfer/6.0.1 | |module load freesurfer/6.0.1 | ||
}} | }} | ||
==Hippocampus and brainstem processing== | ==Hippocampus and brainstem processing== <!--T:21--> | ||
To perform processing of the hippocampus and brainstem, download and install | To perform processing of the hippocampus and brainstem, download and install MATLAB runtime 2012b from the FreeSurfer website: | ||
</translate> | |||
<pre> | <pre> | ||
module load freesurfer/6.0.0 | module load freesurfer/6.0.0 | ||
Line 92: | Line 109: | ||
tar xvf matlab_runtime2012bLinux.tar.gz | tar xvf matlab_runtime2012bLinux.tar.gz | ||
</pre> | </pre> | ||
<translate> | |||
==Example of working batch script for | ==Example of working batch script for FreeSurfer version >= 6.0.0== <!--T:22--> | ||
</translate> | |||
{{File | {{File | ||
|name=mysub.sh | |name=mysub.sh | ||
Line 120: | Line 137: | ||
echo "Program finished with exit code $? at: `date`" | echo "Program finished with exit code $? at: `date`" | ||
}} | }} | ||
<translate> | |||
==Examples of required walltimes== <!--T:23--> | |||
<!--T:24--> | |||
* recon-all -all : <code>#SBATCH --time=08:00:00</code> | * recon-all -all : <code>#SBATCH --time=08:00:00</code> | ||
* recon-all -qcache : <code>#SBATCH --time=00:20:00</code> | * recon-all -qcache : <code>#SBATCH --time=00:20:00</code> | ||
Line 129: | Line 147: | ||
* recon-all -hippocampal-subfields-T1 : <code>#SBATCH --time=00:40:00</code> | * recon-all -hippocampal-subfields-T1 : <code>#SBATCH --time=00:40:00</code> | ||
* recon-all -brainstem-structures: <code>#SBATCH --time=00:30:00</code> | * recon-all -brainstem-structures: <code>#SBATCH --time=00:30:00</code> | ||
</translate> |
Latest revision as of 22:19, 8 July 2022
Introduction
FreeSurfer is a set of tools for the analysis and visualization of structural and functional brain imaging data. FreeSurfer contains a fully automatic structural imaging stream for processing cross sectional and longitudinal data.
FreeSurfer 5.3 as a global module
In our software stack, you may load the freesurfer/5.3.0
module.
FreeSurfer comes up with a script FreeSurferEnv.sh
that should be sourced to correctly set up environment variables such as PATH and PERL5LIB:
[name@server ~]$ module load freesurfer/5.3.0
[name@server ~]$ source $EBROOTFREESURFER/FreeSurferEnv.sh
FreeSurfer 6.0 and newer versions
Due to a change in the license terms, we no longer install the code as a central module. If needed, please install it in your /home directory or in your /project space with EasyBuild. Please follow the instructions below and if needed, contact the technical support for assistance.
Download the software
Select a version (6.0.0 or newer) in the download repository and download the corresponding freesurfer-Linux*vX.Y.Z.tar.gz
archive on your favorite cluster.
Installation in your /home directory with EasyBuild
The following procedure will install FreeSurfer 6.0.0 in /home/$USER/.local/easybuild/software/2020/Core/freesurfer/6.0.0/
. The installation requires some memory and due to the restrictions of memory stack size on the login nodes on our clusters, the installation may fail because of the memory. To overcome this issue, you may need to use an interactive job by asking for enough memory (8 GB or so) to install the code.
- Go to the folder that contains the
freesurfer-Linux-centos6_x86_64-stable-pub-v6.0.0.tar.gz
archive. - Unload all modules with
module purge
. - Install with EasyBuild using
eb FreeSurfer-6.0.0-centos6_x86_64.eb --disable-enforce-checksums
. - Register for the FreeSurfer license key [1].
- Your user license will have to go in
[name@server ~]$ module load freesurfer/6.0.0
[name@server ~]$ cd $FREESURFER_HOME
Use nano or any other text editor of your choice and create a file /home/$USER/.license
and add the license text (example):
name.name@university.ca 12345 *A1BCdEfGHiJK ABCd0EFgHijKl
To load the private module:
module load freesurfer/6.0.0
As of August 2020, we were supporting up to version 6.0.1. You can check for newer versions here.
EasyBuild recipes
You can check the EasyBuild recipes for FreeSurfer online on GitHub or via a command line ,eb -S FreeSurfer
, from any of our clusters. If the version you are looking for is not listed, you may try to install the program with the option --try-software-version=<the new version>
. If that did not work, please contact the technical support for help.
Using EasyBuild, it is possible to install the program in a shared location (like /project) and make the code available for any other member of the group. The following will install FreeSurfer under the directory /home/$USER/projects/def-someuser/$USER/software
and the module under the user's directory /home/$USER/.local/easybuild/modules/2020/Core/freesurfer
.
newgrp def-someuser installdir=/home/$USER/projects/def-someuser/$USER moduledir=/home/$USER/.local/easybuild/modules/2020 pathtosrc=/home/$USER/software eb FreeSurfer-6.0.1-centos6_x86_64.eb --installpath-modules=${moduledir} --prefix=${installdir} --sourcepath=${pathtosrc}
If it complains about checksums, add the option --disable-enforce-checksums
to the eb
command.
To make the program accessible for all members of the group, two more steps are required:
- You need to give all members of your group read and exec access to the installation directory
/home/$USER/projects/def-someuser/$USER
. To see how to give them access to this directory, please read Changing the permissions of existing files. - Each member of the group will need to put the module file in their own /home directories. The module file
6.0.1.lua
is located under the directory:
/home/$USER/.local/easybuild/modules/2020/Core/freesurfer/</code>
Each member of the group will need to create the directory /home/$USER/.local/easybuild/modules/2020/Core/freesurfer
where they will put the file 6.0.1.lua
:
[name@server ~]$ mkdir -p /home/$USER/.local/easybuild/modules/2020/Core/freesurfer
[name@server ~]$ cp 6.0.1.lua /home/$USER/.local/easybuild/modules/2020/Core/freesurfer/
The above will set the module (only the module file that points to the installation directory under /project) in their own directory.
The module can be loaded from their own accounts using:
[name@server ~]$ module load freesurfer/6.0.1
Hippocampus and brainstem processing
To perform processing of the hippocampus and brainstem, download and install MATLAB runtime 2012b from the FreeSurfer website:
module load freesurfer/6.0.0 cd $FREESURFER_HOME curl "http://surfer.nmr.mgh.harvard.edu/fswiki/MatlabRuntime?action=AttachFile&do=get&target=runtime2012bLinux.tar.gz" -o "matlab_runtime2012bLinux.tar.gz" tar xvf matlab_runtime2012bLinux.tar.gz
Example of working batch script for FreeSurfer version >= 6.0.0
#!/bin/bash
#SBATCH --account=def-someuser
#SBATCH --mem=16G
#SBATCH --time=10:00:00
# Load the module:
module load freesurfer/6.0.0
# set the variables:
export SUBJECTS_DIR=<User_Defined_DIR>
source $EBROOTFREESURFER/FreeSurferEnv.sh
echo "Starting run at: `date`"
recon-all command
echo "Program finished with exit code $? at: `date`"
Examples of required walltimes
- recon-all -all :
#SBATCH --time=08:00:00
- recon-all -qcache :
#SBATCH --time=00:20:00
- recon-all -base -tp1 -tp2 :
#SBATCH --time=10:00:00
- recon-all -long subjid -base base :
#SBATCH --time=10:00:00
- recon-all -hippocampal-subfields-T1 :
#SBATCH --time=00:40:00
- recon-all -brainstem-structures:
#SBATCH --time=00:30:00