FreesurferGoodies/AutomaticLabeling - MRC CBU Imaging Wiki

Upload page content

You can upload content for the page named below. If you change the page name, you can also upload content for another page. If the page name is empty, we derive the page name from the file name.

File to load page content from
Page name
Comment
Type the missing letters from: He's no ded, he's jus resing hs eys

location: FreesurferGoodies / AutomaticLabeling

#
# this is an example of an automatic labeling script for the left hemisphere, 
# for the PPG that we have drawn on the study average cortical surface called "myAverage"

## variables

## Freesurfer directory
thePath='/imaging/yourusername/yourproject/subjects'

subjects=(
'CBUXXXXXX' \  
'CBUYYYYYY' \ 
)

## Processing:

nsubjects=${#subjects[*]}
lastsubj=`expr $nsubjects - 1`

for m in `seq 0 ${lastsubj}`
do
        echo "======================================================="
        echo " "
        echo " Computing hPPG cortex surface label left hemisphere"
        echo " "
        echo "======================================================="  

mri_label2label \
 --srcsubject myAverage \
 --srclabel ${thePath}/myAverage/label/lh.hPPG.label \
 --trgsubject ${subjects[m]} \
 --trglabel ${thePath}/${subjects[m]}/label/lh.hPPG.label \
 --hemi lh \
 --regmethod surface

done # subjects lh