Difference between revisions of "Freesurfer"
Jump to navigation
Jump to search
Moskalenko (talk | contribs) |
Moskalenko (talk | contribs) |
||
Line 1: | Line 1: | ||
− | + | [[Category:Software]][[Category:Bioinformatics]][[Category:Neurology]] | |
− | + | {|<!--CONFIGURATION: REQUIRED--> | |
− | + | |{{#vardefine:app|freesurfer}} | |
− | + | |{{#vardefine:url|http://surfer.nmr.mgh.harvard.edu/}} | |
− | + | <!--CONFIGURATION: OPTIONAL (|1}} means it's ON)--> | |
− | + | |{{#vardefine:conf|}} <!--CONFIGURATION--> | |
− | + | |{{#vardefine:exe|}} <!--ADDITIONAL INFO--> | |
− | + | |{{#vardefine:pbs|}} <!--PBS SCRIPTS--> | |
− | + | |{{#vardefine:policy|}} <!--POLICY--> | |
− | < | + | |{{#vardefine:testing|}} <!--PROFILING--> |
− | + | |{{#vardefine:faq|}} <!--FAQ--> | |
− | + | |{{#vardefine:citation|}} <!--CITATION--> | |
− | < | + | |{{#vardefine:installation|}} <!--INSTALLATION--> |
− | + | |} | |
− | < | + | <!--BODY--> |
− | + | <!--Description--> | |
− | + | {{#if: {{#var: url}}| | |
− | < | + | {{App_Description|app={{#var:app}}|url={{#var:url}}|name={{#var:app}}}}|}} |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
+ | Freesurfer is a set of automated tools for reconstruction of the brain’s cortical surface from structural MRI data, and overlay of functional MRI data onto the reconstructed surface.<!--Modules--> | ||
+ | ==Required Modules== | ||
+ | ===Serial=== | ||
+ | * {{#var:app}} | ||
+ | <!-- | ||
+ | ===Parallel (OpenMP)=== | ||
+ | * intel | ||
+ | * {{#var:app}} | ||
+ | ===Parallel (MPI)=== | ||
+ | * intel | ||
+ | * openmpi | ||
+ | * {{#var:app}} | ||
+ | --> | ||
+ | ==System Variables== | ||
+ | * HPC_{{#uppercase:{{#var:app}}}}_DIR and FREESURFER_HOME - installation directory | ||
+ | * HPC_FREESURFER_BIN - executable directory | ||
+ | ===Freesurfer configuration variables=== | ||
+ | The following variables are preset by the {{#var:app}} module: | ||
+ | * SUBJECTS_DIR | ||
+ | * FUNCTIONALS_DIR | ||
+ | * FSFAST_HOME | ||
+ | * MNI_DIR | ||
+ | or load the ''freesurfer'' module and run | ||
+ | source $HPC_FREESURFER_DIR/SetUpFreeSurfer.sh | ||
+ | ===Matlab configuration=== | ||
If you do intend to use the functional tools, then add these lines to your ~/matlab/startup.m file: | If you do intend to use the functional tools, then add these lines to your ~/matlab/startup.m file: | ||
− | + | fsfasthome = getenv('FSFAST_HOME'); | |
− | + | fsfasttoolbox = sprintf('%s/toolbox',fsfasthome); | |
− | + | path(path,fsfasttoolbox); | |
− | + | <!--Configuration--> | |
− | + | {{#if: {{#var: conf}}|==Configuration== | |
− | + | See the [[{{PAGENAME}}_Configuration]] page for {{#var: app}} configuration details. | |
− | + | |}} | |
− | + | <!--Run--> | |
− | + | {{#if: {{#var: exe}}|==Additional Information== | |
− | + | WRITE_ADDITIONAL_INSTRUCTIONS_ON_RUNNING_THE_SOFTWARE_IF_NECESSARY | |
+ | |}} | ||
+ | <!--PBS scripts--> | ||
+ | {{#if: {{#var: pbs}}|==PBS Script Examples== | ||
+ | See the [[{{PAGENAME}}_PBS]] page for {{#var: app}} PBS script examples. | ||
+ | |}} | ||
+ | <!--Policy--> | ||
+ | {{#if: {{#var: policy}}|==Usage Policy== | ||
+ | WRITE USAGE POLICY HERE (Licensing, usage, access). | ||
+ | |}} | ||
+ | <!--Performance--> | ||
+ | {{#if: {{#var: testing}}|==Performance== | ||
+ | WRITE_PERFORMANCE_TESTING_RESULTS_HERE | ||
+ | |}} | ||
+ | <!--Faq--> | ||
+ | {{#if: {{#var: faq}}|==FAQ== | ||
+ | *'''Q:''' **'''A:'''|}} | ||
+ | <!--Citation--> | ||
+ | {{#if: {{#var: citation}}|==Citation== | ||
+ | If you publish research that uses {{#var:app}} you have to cite it as follows: | ||
+ | WRITE_CITATION_HERE | ||
+ | |}} | ||
+ | <!--Installation--> | ||
+ | {{#if: {{#var: installation}}|==Installation== | ||
+ | See the [[{{PAGENAME}}_Install]] page for {{#var: app}} installation notes.|}} | ||
+ | <!--Turn the Table of Contents and Edit paragraph links ON/OFF--> | ||
+ | __NOTOC____NOEDITSECTION__ |
Revision as of 22:19, 22 April 2013
Description
Freesurfer is a set of automated tools for reconstruction of the brain’s cortical surface from structural MRI data, and overlay of functional MRI data onto the reconstructed surface.
Required Modules
Serial
- freesurfer
System Variables
- HPC_{{#uppercase:freesurfer}}_DIR and FREESURFER_HOME - installation directory
- HPC_FREESURFER_BIN - executable directory
Freesurfer configuration variables
The following variables are preset by the freesurfer module:
- SUBJECTS_DIR
- FUNCTIONALS_DIR
- FSFAST_HOME
- MNI_DIR
or load the freesurfer module and run
source $HPC_FREESURFER_DIR/SetUpFreeSurfer.sh
Matlab configuration
If you do intend to use the functional tools, then add these lines to your ~/matlab/startup.m file:
fsfasthome = getenv('FSFAST_HOME'); fsfasttoolbox = sprintf('%s/toolbox',fsfasthome); path(path,fsfasttoolbox);