ࡱ>  =bjbjYY 4;;5  4 > (4*4*4*4*4*4*4,6}9V4V4'k4''' (4'(4'':B,,,P q#n, 4404x,.:':,',B,,V4V4'4: :   Instructions FreeSurfer subcortical segmentation 1. Preparations In your Linux environment, create a folder called enigma that contains the folders input and output: mkdir /enigma mkdir /enigma/input enigma/output Your input-folder should contain the scans of all your participants in a nii.gz-format. Make sure that each nii.gz-file is called subj[number].nii.gz (e.g. subj01.nii.gz, subj02.nii.gz, subj03.nii.gz). If you have both 1.5T and 3T-scans, you should keep them in separate folders. So for example, you may have an enigma/15T/input and enigma/3T/input and enigma/15T/output and enigma/3T/output. For simplicity, in these instructions we assume that you only have scans of one type. It is recommended to use the c-shell or enhanced c-shell for FreeSurfer, you can do this by simply typing: cshor:tcshYou can set this shell permanently as your default: chsh -s /bin/cshor:chsh -s /bin/tcsh 2. Setup FreeSurfer All information on how to set up and install FreeSurfer can be found on this webpage:  HYPERLINK "https://surfer.nmr.mgh.harvard.edu/fswiki/QuickInstall" https://surfer.nmr.mgh.harvard.edu/fswiki/QuickInstall Make sure that you also register to obtain a license to use FreeSurfer:  HYPERLINK "https://surfer.nmr.mgh.harvard.edu/registration.html" https://surfer.nmr.mgh.harvard.edu/registration.html Before you want to work with FreeSurfer, you must make sure three things have happened: The variableFREESURFER_HOMEis set (so your computer knows where FreeSurfer is installed): setenvFREESURFER_HOME/freesurfer The FreeSurfer set up script must be sourced (so FreeSurfer knows the location of everything it needs): source$FREESURFER_HOME/SetUpFreeSurfer.csh FreeSurfer has been pointed to a directory of subjects to work on: setenvSUBJECTS_DIR/enigma/input 3. Run preprocessing pipeline The next step is to run reconall on the subjects in your input-folder ( HYPERLINK "http://surfer.nmr.mgh.harvard.edu/fswiki/recon-all" http://surfer.nmr.mgh.harvard.edu/fswiki/recon-all). In your input-folder, make a text-file (e.g. nano List_subjects.txt) containing a list of all your subjects: subj01 subj02 subj03  You can create the following script (e.g. nano loop_recon-all) to run recon-all on multiple subjects: #!/bin/bash exec /enigma/output done To run this script, make it executable with the following command: chmod u+x loop_recon_all Then, run the script: ./loop_recon_all Depending on the number of your scans and the processing speed of your computer, this script will take several days to finish (24 to 36 hours/subject). When recon-all is done, you will see a folder for each subject in your output-folder, in which you will find 10 new folders (such as mri, stats, surf etc). 4. Extract subcortical volumes To extract subcortical volumes, run the following commands: cd /enigma/output bash echo "SubjID,LLatVent,RLatVent,Lthal,Rthal,Lcaud,Rcaud,Lput,Rput,Lpal,Rpal,Lhippo,Rhippo,Lamyg,Ramyg,Laccumb,Raccumb,ICV" > LandRvolumes.csv for subj_id in `ls -d subj*`; do printf "%s," "${subj_id}" >> LandRvolumes.csv for x in Left-Lateral-Ventricle Right-Lateral-Ventricle Left-Thalamus-Proper Right-Thalamus-Proper Left-Caudate Right-Caudate Left-Putamen Right-Putamen Left-Pallidum Right-Pallidum Left-Hippocampus Right-Hippocampus Left-Amygdala Right-Amygdala Left-Accumbens-area Right-Accumbens-area; do printf "%g," `grep ${x} ${subj_id}/stats/aseg.stats | awk '{print $4}'` >> LandRvolumes.csv done printf "%g" `cat ${subj_id}/stats/aseg.stats | grep IntraCranialVol | awk -F, '{print $4}'` >> LandRvolumes.csv echo "" >> LandRvolumes.csv done This will create a new file, called LandRvolumes.csv. It should contain a table with volumes (in mm3) of the ventricles, thalamus, caudate, putamen, pallidum, hippocampus, amygdala and accumbens and intracranial volume (ICV) for each subject. Open the file (e.g. nano LandRvolumes.csv) to check if this information is actually there. 5. Generate histogram plots In the next step, we generate histogram plots of our data. To do this, you need to have R installed on your Linux-system ( HYPERLINK "http://cran.r-project.org/" http://cran.r-project.org/). Furthermore, you need to download the following script:  HYPERLINK "http://enigma.ini.usc.edu/wp-content/uploads/scripts/ENIGMA_plots.R" http://enigma.ini.usc.edu/wp-content/uploads/scripts/ENIGMA_plots.R Create a new folder in your enigma-folder, called figures: mkdir /enigma/figures/ Then, copy the LandRvolumes.csv-file (which we created earlier) to this folder: cp /enigma/output/LandRvolumes.csv /enigma/figures/ LandRvolumes.csv should look like this: SubjID,LLatVent,RLatVent,Lthal,Rthal,Lcaud,Rcaud,Lput,Rput,Lpal,Rpal,Lhippo,Rhippo,Lamyg,Ramyg,Laccumb,Raccumb,ICV subj01,6523.3,9343.5,7598.5,4488.2,4752.4,5665.3,5864.59,2052.69,1842.28,3398.2,4052.37,787.061,702.422,591.68,576.65,0.908024 subj02,5362.22,7786.76,7885.63,4106.95,3923.44,4746.09,5222.29,1819.34,1961.72,3454.37,3675.85,933.398,880.4,x,x,0.737983 subj03,4476.45,5984.82,5984.82,4583.94,4466.07,4263.57,3899.71,x,x,3172.76,3083.38,599.59,435.85,146.338,253.916,0.677593 subj04,3375.55,7115.98,6468.93,x,4078.48,5056.96,5150.3,567.949,617.783,3628.39,3214.69,1091.6,1033.86,435.85,208.037,0.637183 Make sure that the columns are in the same order as in the file above. Also, note that the x is the marker that should be used to mark files as poorly segmented or excluded (see step 9). Also, you need to make sure that there are no missing values in the file. In the LandRvolumes.csv file missing values will appear as two commas in a row ,,. Missing values are probably easier to see in a spreadsheet program like Microsoft Excel, there it will just be a blank cell. You need to put an x value for any missing value so that it will be excluded from the analysis. Move the ENIGMA_plots.R script to the figures-folder: mv /downloads/enigma_plots.R /enigma/figures/ Make sure you are in your new folder: cd /enigma/figures Run the R script to generate the plots: R --no-save --slave < ENIGMA_plots.R It should only take a few minutes to generate all of the plots. If you get errors, they should tell you what things need to be changed in the file in order to work properly. Just make sure that your input file is in *.csv format similar to the file above. The output will be SummaryStats.txt and a series of PNG image files that you can open in any standard picture viewer. You need to go through each of the PNG files to make sure that your histograms look approximately normal. 6. Perform outlier detection Now we will run a semi-automated script to detect outliers, which is based on the SummaryStats.txt-file you created with R, and LandRvolumes.csv. This is done by defining the Interquartile Interval (IQI), defined as Quartile 1 (Q1) 1.5 times the Interquartile Range (IQR) to Quartile 3 (Q3) + 1.5 times the IQR. For a normal distribution this is equivalent to the mean+/-2.698 standard deviations. This script assumes a normal distribution. #!/bin/bash echo "Region,MNminus1.5IQI,MNplus1.5IQI" > IQI_range.csv sed '1d' SummaryStats.txt | grep -v "Assym" | grep -v "Avg_" | awk ' { print $1","$4-2.698*$5","$4+2.698*$5 } ' >> IQI_range.csv N_regions=`more LandRvolumes.csv | head -n 1 | awk -F "," ' { print NF } '` for (( c=2; c<=$N_regions; c++)) do roi=`more LandRvolumes.csv | head -n 1 | awk -F "," ' { print $'$c' } '` IQI_low=`more IQI_range.csv | grep $roi | awk -F "," ' { print $2 }'` IQI_high=`more IQI_range.csv | grep $roi | awk -F "," ' { print $3 }'` IQI_low_int=`printf "%10.0f\n" $IQI_low` IQI_high_int=`printf "%10.0f\n" $IQI_high` echo "Looking for subjects with "$roi" volumes outside of "$IQI_low":"$IQI_high cnt=1 for textline in `sed '1d' LandRvolumes.csv | awk -F "," ' { print $'$c' } '` do cnt=`echo $cnt+1 | bc ` textline_int=`printf "%10.0f\n" $textline` if [ $textline_int -gt $IQI_high_int ]; then sid=`more LandRvolumes.csv | head -n $cnt | tail -n 1 | awk -F "," ' { print $1 } '` echo $sid" has a "$roi" of "$textline", this volume is high" fi if [ $textline_int -lt $IQI_low_int ]; then sid=`more LandRvolumes.csv | head -n $cnt | tail -n 1 | awk -F "," ' { print $1 } '` echo $sid" has a "$roi" of "$textline", this volume is low" fi done done Save the above script as mkIQIrange.sh as it will be used in the following script to visualize the outlying subjects. This script requires a working FSLview. Then run the following commands: #!/bin/bash ./mkIQIrange.sh > jnk.txt more jnk.txt | grep "has" | awk -F/ ' { print $NF } ' | awk ' { print $1 } '| sort | uniq > jnk2.txt more jnk2.txt | wc -l hd=`pwd` for img in `more jnk2.txt` do echo $img cd /enigma/output/$img/mri/ mri_convert --out_orientation RAS --in_type mgz --out_type nii T1.mgz T1.nii ; mri_convert --out_orientation RAS --in_type mgz --out_type nii aseg.mgz aseg.nii ; more $hd/jnk.txt | grep $img fslview T1.nii aseg.nii -t 0.2 -l "MGH-Subcortical"; rm *.nii done FSLView will open automatically to visualize the subjects that were identified as outliers, so that you can verify that the structure is delineated properly. Note: If a subject is identified as an outlier, but after inspection you decide the subject is properly segmented, you should NOT exclude its structures from your LandRvolumes.csv (see step 9). 7. Create PNGs for the quality check Download the ENIGMA Matlab scripts into your enigma-folder (http://enigma.ini.usc.edu/wp-content/uploads/CORTEX/QC_ENIGMA_Cortex.zip) (called QC_ENIGMA_Cortex.zip) and unzip them. Also download the scripts func_make_subcorticalFS_ENIGMA_QC.m (located here  HYPERLINK "http://enigma.ini.usc.edu/wp-content/uploads/scripts/func_make_subcorticalFS_ENIGMA_QC.m" http://enigma.ini.usc.edu/wp-content/uploads/scripts/func_make_subcorticalFS_ENIGMA_QC.m) and make_subcortical_ENIGMA_QC_webpage.sh (located here  HYPERLINK "http://enigma.ini.usc.edu/wp-content/uploads/scripts/make_subcortical_ENIGMA_QC_webpage.sh" http://enigma.ini.usc.edu/wp-content/uploads/scripts/make_subcortical_ENIGMA_QC_webpage.sh) and move them to the same folder containing all other matlab scripts. Start Matlab: /matlab Add the ENIGMA_QC folder containing all of the required scripts to Matlabs path: File -> Set Path -> Add Folder -> {OK} -> {Save} -> {Close} When you work in Matlab without a GUI, you can instead type: addpath /enigma/QC_ENIGMA In the Matlab console window, change directories to the folder with all of your FreeSurfer subject folders. cd /enigma/output/ Make a directory to store all of the QC output. mkdir /enigma/output/QC/ In the Matlab command window we can do: QC_output_directory=/enigma/output/QC/'; FS_directory='/enigma/output/'; a=dir(char(strcat(FS_directory,'/subj*')));%Choose this so that it selects only %your subject folders that contain FS output for x = 1:size(a,1) [c,b,d]=fileparts(a(x,1).name); %b becomes the subject_name try func_make_subcorticalFS_ENIGMA_QC(QC_output_directory, b, [FS_directory,'/', b, '/mri/orig.mgz'], [FS_directory,'/',b, '/mri/aparc+aseg.mgz']); end display(['Done with subject: ', b,': ',num2str(x-2), ' of ', num2str(size(a,1)-2)]); end The func_make_subcorticalFS_ENIGMA_QC-script should take approximately 7 seconds/subject and will output a series of *.png image files separated by individual subject folders. NB: if you run into problems with this Matlab loop try removing the last / in the QC_output_directory variable. So, QC_output_directory='/enigma/output/QC/'; would become QC_output_directory='/enigma/output/QC; 8. Perform quality check on the webpage To create a webpage for easy viewing of the QC output you just generated in Matlab, go to the directory where you stored the script make_subcortical_ENIGMA_QC_webpage.sh and make sure it is executable: chmod 777 make_subcortical_ENIGMA_QC_webpage.sh Now to run the script, just give the script the full path to the directory where you stored the Matlab QC output files: ./make_subcortical_ENIGMA_QC_webpage.sh /enigma/output/QC/ NB: If you have trouble running this script, its possible that you need to fix the line endings in the script before running. You can do this by running this command: sed -i -e 's/\r$//' make_subcortical_ENIGMA_QC_webpage.sh The script will create multiple webpages (e.g. ENIGMA_Amyg_volume_QC.html, ENIGMA_Subcortical_QC.html) in the same folder as your QC output. To open one of these webpages in a browser of your choice in a Linux environment. For example: firefox /enigma/output/QC/ENIGMA_Subcortical_QC.html If you want to check the segmentation on another computer, you can just copy over the whole QC-folder to your computer and open the webpage from there. 9. Exclude poor segmentations Based on the histogram plots, outlier detection and the quality check on the webpage, you may have identified some poor segmentations. You can try to re-run recon-all on the subjects showing poor segmentations and go through step 4 to 6 again. If this does not help, then you have to exclude these volumes from LandRvolumes.csv by marking them with an x and re-run the ENIGMA_plots.R on your updated LandRvolumes.csv (see step 5). Send us the new histograms and SummaryStats.txt once you are finished. 0125AB^u{}̺zl^zL6+h"ulh" 6CJOJQJ^JaJmHsH#h:fhja 6CJOJQJ^JaJheCJOJQJ^JaJh`KCJOJQJ^JaJhfCJOJQJ^JaJ h:fhja CJOJQJ^JaJ#h:fhja 5CJOJQJ^JaJh;p5CJOJQJ^JaJ#h:fhMn5CJOJQJ^JaJ#h:fh$" 5CJOJQJ^JaJhU"5CJOJQJ^JaJ#h:fh$" 5CJOJQJ^JaJ12B R kkd$$Ifldd ` t 0644 l` alp yt"ul d$Ifgd"uldgd  8 ; B C [ ^ o ӽӽӽwfUGUh bCJOJQJ^JaJ h:fhCJOJQJ^JaJ h:fhD1CJOJQJ^JaJ h:fh}p"CJOJQJ^JaJhpCJOJQJ^JaJ h:fhja CJOJQJ^JaJ+h:fhja 6CJOJQJ^JaJmHsH+h"ulh" 6CJOJQJ^JaJmHsH+h"ulh`K6CJOJQJ^JaJmHsH+h"ulhx96CJOJQJ^JaJmHsHo { & ' ( . 0 ʹ~p~b~J2.h;p6CJOJQJ^JaJfH`q .h`K6CJOJQJ^JaJfH`q h^PCJOJQJ^JaJhlCJOJQJ^JaJhCJOJQJ^JaJhja CJOJQJ^JaJ h:fhxnCJOJQJ^JaJhquICJOJQJ^JaJ h:fhCJOJQJ^JaJ4hwhxn6CJOJQJ^JaJfH`q 4hwh6CJOJQJ^JaJfH`q 0 2 8 9 = C F L M Q R X Z \ c d g h n q x y ЉгxfгXJhw~CJOJQJ^JaJh^PCJOJQJ^JaJ#hPah6CJOJQJ^JaJ hlhCJOJQJ^JaJ.h;p6CJOJQJ^JaJfH`q #hh6CJOJQJ^JaJhCJOJQJ^JaJh6CJOJQJ^JaJ.h`K6CJOJQJ^JaJfH`q .h>N;6CJOJQJ^JaJfH`q   > B F L N U ^ w x ǶsaO#h:fh x5CJOJQJ^JaJ#h:fhMn5CJOJQJ^JaJ#hh;p5CJOJQJ^JaJ h"ulh;pCJOJQJ^JaJ#h"ulh;p6CJOJQJ^JaJh;pCJOJQJ^JaJ h:fh;pCJOJQJ^JaJh5CJOJQJ^JaJhja CJOJQJ^JaJhCJOJQJ^JaJh^\CJOJQJ^JaJR < > B F K d$Ifgd"uldgd;pdgd K L M E9 d$Ifgd"ulkd$$IflFI2II `` t06    44 l` alpyt"ulM N  d$Ifgd"uldgd;pkkd$$Ifl2II064 lalp yt"ul E==555dgd~dgd kd1$$IflFp p l `` t06    44 l` alpyt"ul   \ ] ^ # $ % Y Z [ \ ܯǘ܀ǘraaN;$h:fhja 0JCJOJQJ^JaJ$h:fhja 0JCJOJQJ^JaJ h:fhja CJOJQJ^JaJh~CJOJQJ^JaJ/jh:fh~CJOJQJU^JaJ-h:fh~0JB*CJOJQJ^JaJph/j-h:fh~CJOJQJU^JaJ)jh:fh~CJOJQJU^JaJ h:fh~CJOJQJ^JaJ#h:fhja 5CJOJQJ^JaJ [ \ W d$Ifgd"ulhd-DM [$\$^hgd  & Fd-DM [$\$gd dgd dgd~ )3VXY34HN[]νyνyhT@'h"ulh`K0J6CJOJQJ^JaJ'h"ulh0J6CJOJQJ^JaJ!h" 0J6CJOJQJ^JaJh" CJOJQJ^JaJ#h"ulh" 6CJOJQJ^JaJh"ulh" 6OJQJmHsH'h"ulh" 0J6CJOJQJ^JaJ h:fh" CJOJQJ^JaJhja CJOJQJ^JaJ h:fhja CJOJQJ^JaJ$h:fhja 0JCJOJQJ^JaJWXYdId= d$Ifgd"ul & Fd-DM [$\$gd hd-DM [$\$^hgd kd$$Ifl:[! ! ` t 0644 l` alp yt"ul34fK0d-DM [$\$`gd  & Fd-DM [$\$gd hd-DM [$\$^hgd ~kd$$Ifl/ ` t 0644 l` alp yt"ul4\]^|ummmmdgd ~kdG$$Ifln ` t 0644 l` alp yt"ul d$Ifgd"ul ]^a|˺yky]Ok> h:fh bCJOJQJ^JaJhpCJOJQJ^JaJhI CJOJQJ^JaJh bCJOJQJ^JaJ h:fhqCJOJQJ^JaJ h:fh xCJOJQJ^JaJ h:fhWKCJOJQJ^JaJhv?GHSVfglٙwi[wJ<h;pCJOJQJ^JaJ h:fhXCJOJQJ^JaJhpCJOJQJ^JaJhI CJOJQJ^JaJ h:fh.CJOJQJ^JaJ h:fhqCJOJQJ^JaJ h:fhCJOJQJ^JaJ-h:fh b0JB*CJOJQJ^JaJph/jh:fh bCJOJQJU^JaJ h:fh bCJOJQJ^JaJ)jh:fh bCJOJQJU^JaJlquw͵夓o^M^?h;pCJOJQJ^JaJ h:fhX;gCJOJQJ^JaJ h:fh_CJOJQJ^JaJ#h:fh7x6CJOJQJ^JaJ#h"ulh7x6CJOJQJ^JaJ h:fhCJOJQJ^JaJ h:fhXCJOJQJ^JaJ.h<086CJOJQJ^JaJfH`q .ho6CJOJQJ^JaJfH`q 4hhX6CJOJQJ^JaJfH`q ./;Sdwwwkkkkkk d$Ifgd"uldgd kdF $$Ifl88 ` t 0644 l` alp yt"ul   /AEG弪ygUyC1#h"ulh;!6CJOJQJ^JaJ#h"ulh;p6CJOJQJ^JaJ#h"ulh dq6CJOJQJ^JaJ#h"ulho6CJOJQJ^JaJ#h"ulh7x6CJOJQJ^JaJhXCJOJQJ^JaJ h:fh_CJOJQJ^JaJ#h:fhX6CJOJQJ^JaJ h:fhXCJOJQJ^JaJ.hO6CJOJQJ^JaJfH`q 4hf hX6CJOJQJ^JaJfH`q !&+,12ɷɆtbttɘQCQhf CJOJQJ^JaJ h:fhX;gCJOJQJ^JaJ#h:fhX6CJOJQJ^JaJ#h"ulhx6CJOJQJ^JaJ#h"ulhO6CJOJQJ^JaJ h:fhXCJOJQJ^JaJhaCJOJQJ^JaJ#h:fh_6CJOJQJ^JaJ#h"ulh7x6CJOJQJ^JaJ#h"ulh;!6CJOJQJ^JaJ#h"ulh`K6CJOJQJ^JaJwwwk d$Ifgd"uldgd kd $$Iflxx ` t 0644 l` alp yt"ul0yyym d$Ifgd"uldgd ~kd $$Ifl  ` t 0644 l` alp yt"ul012opvssssss d$Ifgd"uldgd wkdL $$Iflpp ` t 0644 lalp yt"ul   knopsŴ|n`O=#h:fhMn5CJOJQJ^JaJ h$ h;!CJOJQJ^JaJh.CJOJQJ^JaJh'!CJOJQJ^JaJhpCJOJQJ^JaJhI CJOJQJ^JaJh;!CJOJQJ^JaJhICJOJQJ^JaJ h:fh.CJOJQJ^JaJ h:fhX;gCJOJQJ^JaJh%fCJOJQJ^JaJh;pCJOJQJ^JaJhCJOJQJ^JaJsͼ~lZHl6l#h"ulh,k6CJOJQJ^JaJ#h"ulh`K6CJOJQJ^JaJ#h"ulh6CJOJQJ^JaJ#h"ulhB56CJOJQJ^JaJ h:fh0dCJOJQJ^JaJhja CJOJQJ^JaJhw9yCJOJQJ^JaJ h:fhCJOJQJ^JaJ h:fhCJOJQJ^JaJhGaCJOJQJ^JaJ#h:fhG'5CJOJQJ^JaJ#h:fh5CJOJQJ^JaJ>DEGNZʹzi[@i.#h:fh}76CJOJQJ^JaJ4hQ[jh}76CJOJQJ^JaJfH`q hCJOJQJ^JaJ h:fh}7CJOJQJ^JaJh-pCJOJQJ^JaJh pCJOJQJ^JaJ#hh-CJH*OJQJ^JaJ h:fh-CJOJQJ^JaJ h:fhLCJOJQJ^JaJ h:fhqCJOJQJ^JaJ#h"ulhB56CJOJQJ^JaJ#h"ulh>E6CJOJQJ^JaJGL/0Lyqqqiiidgdv dgd ykd $$IflH$H$ ` t 0644 lalp yt"ul d$Ifgd"ul   (-./01LSXn޼ͫͫ|jYKYKY6)jh:fhv CJOJQJU^JaJhv CJOJQJ^JaJ h:fhv CJOJQJ^JaJ#h:fhv 5CJOJQJ^JaJhv 5CJOJQJ^JaJhL6CJOJQJ^JaJ h:fhLCJOJQJ^JaJ h:fh}7CJOJQJ^JaJ h:fh-CJOJQJ^JaJ h:fhXCJOJQJ^JaJ h:fhCJOJQJ^JaJ h:fhJCJOJQJ^JaJ  GH«|_H3)h,hv B*CJOJQJ^JaJph-h,hL0JB*CJOJQJ^JaJph8j h,hLB*CJOJQJU^JaJph)h,hLB*CJOJQJ^JaJph2jh,hLB*CJOJQJU^JaJph-h:fhv 0JB*CJOJQJ^JaJph)jh:fhv CJOJQJU^JaJ/j h:fhv CJOJQJU^JaJ h:fhv CJOJQJ^JaJ%+:=>ӳpbQQ h%hv CJOJQJ^JaJhGaCJOJQJ^JaJ h:fhdCJOJQJ^JaJh%"/CJOJQJ^JaJ#h"ulh`K6CJOJQJ^JaJ#h"ulh6CJOJQJ^JaJ#h"ulhv 6CJOJQJ^JaJhv CJOJQJ^JaJ h:fhv CJOJQJ^JaJh`KCJOJQJ^JaJh1ICJOJQJ^JaJ<=>m~kdz$$Ifl ` t 0644 l` alp yt"ul d$Ifgd"uldgdv mf_|||ppppp d$Ifgdv gdv ~kd $$IflX X ` t 0644 l` alp yt"ul mnqrt{fgjkmu^`aпЮsehD`CJOJQJ^JaJh`KCJOJQJ^JaJ h2t}hv CJOJQJ^JaJhCJOJQJ^JaJhfCJOJQJ^JaJ h hv CJOJQJ^JaJ h%hv CJOJQJ^JaJhv CJOJQJ^JaJhv 6CJOJQJ^JaJ#h2t}hv 6CJOJQJ^JaJ'_`a vj d$Ifgd"ul d1$gdv dgdv xkd$$Ifl H$# ` 064 l` alp    8 9 < B Q S { } !!!!!!""""{m^h5CJOJQJ^JaJhDqCJOJQJ^JaJ h"ulhv CJOJQJ^JaJ h Uhv CJOJQJ^JaJ#h"ulh`K6CJOJQJ^JaJ#h"ulh6CJOJQJ^JaJ#h"ulhv 6CJOJQJ^JaJhv CJOJQJ^JaJ h2t}hv CJOJQJ^JaJhpCJOJQJ^JaJ"   8 9 R yyym d$Ifgd"uldgdv ~kdr$$Ifl<< ` t 0644 l` alp yt"ulR S T | } yyym d$Ifgd"uldgdv ~kd$$Ifl\ \ ` t 0644 l` alp yt"ul !!""""`$a$m$$yyyyyyyyymm d$Ifgd"uldgdv ~kd$$IflHH ` t 0644 l` alp yt"ul """6#_$a$7)8)9)))))))!****,ԱԏsbP>#h"ulh`K6CJOJQJ^JaJ#h"ulh6CJOJQJ^JaJ hmhCJOJQJ^JaJh.CJOJQJ^JaJh>$CJOJQJ^JaJ hmhv CJOJQJ^JaJ h"ulhv CJOJQJ^JaJ#h"ulhv 6CJOJQJ^JaJ h?hv CJOJQJ^JaJhv CJOJQJ^JaJhe,CJOJQJ^JaJhv 5CJOJQJ^JaJ$(%t%%%'&n&&&''e''''-(j(m(((*)-)2)7) d$Ifgd"ul7)8)9)))* *!*****yyymmmdmmm $Ifgd d$Ifgd"uldgdv ~kdd$$IflH$H$ ` t 0644 l` alp yt"ul ****L+++++,,,,ummdgdv ~kd $$IflH$H$ ` t 0644 l` alp yt"ul d$Ifgd"ul ,,,#,o,,,,,, -/-:-;-F-V-e-f-g-h-߲wiXG8h5CJOJQJ^JaJ hv hv CJOJQJ^JaJ hqOh0lCJOJQJ^JaJh(CJOJQJ^JaJhaCJOJQJ^JaJhFaCJOJQJ^JaJh CJOJQJ^JaJ h2t}h0lCJOJQJ^JaJh0lCJOJQJ^JaJ h2t}hv CJOJQJ^JaJhCJOJQJ^JaJhv CJOJQJ^JaJ#ha#fhv 6CJOJQJ^JaJ,,f-g--0000000`~kd$$Ifl  ` t 0644 l` alp yt"ul d$Ifgd"ulgddgd dgdv h-j-l-t-y-z-~--------------ۺzl[Jz*CJOJQJ^JaJ#h:fhi|@>*CJOJQJ^JaJQ/V/W/i/o//////R0S0T0]000˽ܣqZE4 h:fhi|@CJOJQJ^JaJ)h,hYB*CJOJQJ^JaJph-h,h0JB*CJOJQJ^JaJph8jh,hB*CJOJQJU^JaJph)h,hB*CJOJQJ^JaJph2jh,hB*CJOJQJU^JaJphh`KCJOJQJ^JaJ h:fhYCJOJQJ^JaJhCJOJQJ^JaJ)h,hB*CJOJQJ^JaJph000000001U1V111111111111ᗉ{m[I7[7[#h"ulh`K6CJOJQJ^JaJ#h"ulh6CJOJQJ^JaJ#h"ulh%i6CJOJQJ^JaJhoCJOJQJ^JaJh2YCJOJQJ^JaJh%iCJOJQJ^JaJh CJOJQJ^JaJhVCJOJQJ^JaJh_ CJOJQJ^JaJh`KCJOJQJ^JaJ#h"ulh:6CJOJQJ^JaJ h:fhi|@CJOJQJ^JaJhKCJOJQJ^JaJ0U1V111111"2#2<2m~kd$$IflUU ` t 0644 l` alp yt"ul d$Ifgd"uldgd  1111"2#2&2,2:2=2>2n2o2u2{222222222°~ll[M[;#h"ulh6CJOJQJ^JaJh;pCJOJQJ^JaJ h:fhkCJOJQJ^JaJ#h"ulhaI6CJOJQJ^JaJhlCJOJQJ^JaJ#h"ulh`K6CJOJQJ^JaJ#h"ulh6CJOJQJ^JaJ#h"ulh%i6CJOJQJ^JaJ h:fhoCJOJQJ^JaJhUz CJOJQJ^JaJ h:fhi|@CJOJQJ^JaJh-CCJOJQJ^JaJ<2=2>2n2o22yyym d$Ifgd"uldgd ~kdF$$IflHH ` t 0644 l` alp yt"ul22222233333t4x4yyymmmmmmmm d$Ifgd"uldgd ~kd$$Ifl ` t 0644 l` alp yt"ul 22222 30343_3`3333444444444445556ɷɷɷɩy^4hQhi|@6CJOJQJ^JaJfH`q h`KCJOJQJ^JaJ h:fhkCJOJQJ^JaJ h:fhi|@CJOJQJ^JaJhCJOJQJ^JaJ#h"ulhUz 6CJOJQJ^JaJ#h"ulh6CJOJQJ^JaJ#h"ulh`K6CJOJQJ^JaJ#h"ulh6CJOJQJ^JaJx4444455q6r66d7e77yqqqqqqqqdgd ykd$$IflH$H$ ` t 0644 lalp yt"ul d$Ifgd"ul 66-636A6V6\6j6o6p6r6s6u6Ͳn]O@.#h:fh5CJOJQJ^JaJh5CJOJQJ^JaJhXCJOJQJ^JaJ h:fhc'CJOJQJ^JaJ4hQhc'6CJOJQJ^JaJfH`q .h6CJOJQJ^JaJfH`q h:fhi|@CJOJQJ^JaJ4hQhi|@6CJOJQJ^JaJfH`q .h`K6CJOJQJ^JaJfH`q 4hQh/V6CJOJQJ^JaJfH`q u6|66666666#7/757C7D7d7e7777̽۬ykZZH6H#h"ulh`K6CJOJQJ^JaJ#h"ulhOy6CJOJQJ^JaJ h:fhTCJOJQJ^JaJh`KCJOJQJ^JaJ h:fh]fCJOJQJ^JaJ h:fh][oCJOJQJ^JaJ h:fhi|@CJOJQJ^JaJ hXhCJOJQJ^JaJhav5CJOJQJ^JaJhw5CJOJQJ^JaJ#h:fh5CJOJQJ^JaJ#h:fhpD5CJOJQJ^JaJ7778P8yym d$Ifgd"uldgd ~kd5$$Ifl ` t 0644 l` alp yt"ul7788"8(86878=8K8Q8R8888!9'97989ykZHH6#h:fhJ6CJOJQJ^JaJ#h"ulhT76CJOJQJ^JaJ h:fhu-aCJOJQJ^JaJhnWCJOJQJ^JaJ#h:fhi|@6CJOJQJ^JaJ#h"ulh6CJOJQJ^JaJ#h"ulh2\6CJOJQJ^JaJ#h"ulh`K6CJOJQJ^JaJ#h"ulh/V6CJOJQJ^JaJhi|@CJOJQJ^JaJ h:fhi|@CJOJQJ^JaJh^NCJOJQJ^JaJP8Q8R88869yyym d$Ifgd"uldgd ~kd$$Ifl!! ` t 0644 l` alp yt"ul697989':(:c:yyym d$Ifgd"uldgd ~kd$$Ifl   ` t 0644 l` alp yt"ul89;9O9W9_9`9a9b9f9h9n9o9{999999999999::%:&:':(:´¦¦||kZ h:fh$LCJOJQJ^JaJ hxhi|@CJOJQJ^JaJh;pCJOJQJ^JaJhUVCJOJQJ^JaJh\CJOJQJ^JaJh`KCJOJQJ^JaJhwzOCJOJQJ^JaJ h:fhV8CJOJQJ^JaJhCJOJQJ^JaJ h:fhi|@CJOJQJ^JaJh CJOJQJ^JaJ(:):/:0:6:D:G:H:T:d:g:::::::::ɷ۷۔udVH:hu4oCJOJQJ^JaJhi|@CJOJQJ^JaJhmnCJOJQJ^JaJ h:fh]fCJOJQJ^JaJhCCJOJQJ^JaJ h:fhi|@CJOJQJ^JaJ h:fh$LCJOJQJ^JaJ#h"ulhC6CJOJQJ^JaJ#h"ulh`K6CJOJQJ^JaJ#h"ulh6CJOJQJ^JaJ#h"ulhL66CJOJQJ^JaJ#h"ulh;p6CJOJQJ^JaJc:d:e:::;<<=yyyyqqqdgdZdgd ~kd'$$Ifl ` t 0644 l` alp yt"ul:;;;;9;M;t;;;;;;;;;;;<<><G<H<K<R<S<<õ}o}a}SES}hJUCJOJQJ^JaJh)ICJOJQJ^JaJh+CJOJQJ^JaJhCJOJQJ^JaJhoFCJOJQJ^JaJhZCJOJQJ^JaJhbg0CJOJQJ^JaJh/oiCJOJQJ^JaJhCJOJQJ^JaJh\]a5CJOJQJ^JaJh5CJOJQJ^JaJhbg05CJOJQJ^JaJh5CJOJQJ^JaJ<<<<<<< ====hZCJOJQJ^JaJh;CJOJQJ^JaJh/oiCJOJQJ^JaJh`KCJOJQJ^JaJh$k@CJOJQJ^JaJh+CJOJQJ^JaJ 21h:p&/ =!"#$% $$Ifl!vh#vd:V l ` t 06,5d` alp yt"ul$$Ifl!vh#vI#v:V l `` t065I5/ ` alpyt"ul$$If!vh#vI:V l2065I4alp yt"ul$$Ifl!vh#vp#v #vl:V l `` t065p5 5l/ ` alpyt"uliDyK 7https://surfer.nmr.mgh.harvard.edu/fswiki/QuickInstallyK https://surfer.nmr.mgh.harvard.edu/fswiki/QuickInstallyX;H,]ą'caDyK 5https://surfer.nmr.mgh.harvard.edu/registration.htmlyK https://surfer.nmr.mgh.harvard.edu/registration.htmlyX;H,]ą'c$$Ifl!vh#v[!:V l: ` t 065 !` alp yt"ul$$Ifl!vh#v:V l ` t 065/` alp yt"ul$$Ifl!vh#vn:V l ` t 065` alp yt"ulYDyK 3http://surfer.nmr.mgh.harvard.edu/fswiki/recon-allyK ~http://surfer.nmr.mgh.harvard.edu/fswiki/recon-allyX;H,]ą'c$$Ifl!vh#v8:V l ` t 06,58` alp yt"ul$$Ifl!vh#vx:V l ` t 06,5x` alp yt"ul$$Ifl!vh#v :V l ` t 065 ` alp yt"ul$$Ifl!vh#vp:V l ` t 065palp yt"ul$$Ifl!vh#vH$:V l ` t 06,5H$alp yt"ulDyK http://cran.r-project.org/yK Nhttp://cran.r-project.org/yX;H,]ą'cDyK yK http://enigma.ini.usc.edu/wp-content/uploads/scripts/ENIGMA_plots.R$$Ifl!vh#v:V l ` t 065` alp yt"ul$$Ifl!vh#vX :V l ` t 065X ` alp yt"ul$$Ifl!vh#vH$:V l ` 065#4` alp $$Ifl!vh#v<:V l ` t 065<` alp yt"ul$$Ifl!vh#v\ :V l ` t 065\ ` alp yt"ul$$Ifl!vh#vH:V l ` t 065H` alp yt"ul$$Ifl!vh#vH$:V l ` t 065H$` alp yt"ul$$Ifl!vh#vH$:V l ` t 065H$` alp yt"ul#DyK yK http://enigma.ini.usc.edu/wp-content/uploads/scripts/func_make_subcorticalFS_ENIGMA_QC.m'DyK yK http://enigma.ini.usc.edu/wp-content/uploads/scripts/make_subcortical_ENIGMA_QC_webpage.sh$$Ifl!vh#v :V l ` t 065 ` alp yt"ul$$Ifl!vh#vU:V l ` t 065U` alp yt"ul$$Ifl!vh#vH:V l ` t 065H` alp yt"ul$$Ifl!vh#v:V l ` t 065` alp yt"ul$$Ifl!vh#vH$:V l ` t 06,5H$alp yt"ul$$Ifl!vh#v:V l ` t 065` alp yt"ul$$Ifl!vh#v!:V l ` t 065!` alp yt"ul$$Ifl!vh#v :V l ` t 065 ` alp yt"ul$$Ifl!vh#v:V l ` t 065` alp yt"ul6666666662 0@P`p2( 0@P`p 0@P`p 0@P`p 0@P`p 0@P`p 0@P`p8XV~_HmH nH sH tH @`@ NormalCJ_HaJmH sH tH DA`D Default Paragraph FontRi@R  Table Normal4 l4a (k (No List 6U`6  x Hyperlink >*B*phB'`B FComment ReferenceCJaJ<@< F Comment TextCJaJ@j@@ FComment Subject5\H@2H F Balloon TextCJOJQJ^JaJ8OB8 ja line862dd[$\$BOQB ja apple-converted-spaceNg`aN ja HTML TypewriterCJOJPJQJ^JaJ8Or8 ja line891dd[$\$FV`F _FollowedHyperlink >*B* phb@b @List Paragraphd^m$CJOJPJQJaJjj " Table Grid7:V0PK!pO[Content_Types].xmlj0Eжr(΢]yl#!MB;.n̨̽\A1&ҫ QWKvUbOX#&1`RT9<l#$>r `С-;c=1g~'}xPiB$IO1Êk9IcLHY<;*v7'aE\h>=^,*8q;^*4?Wq{nԉogAߤ>8f2*<")QHxK |]Zz)ӁMSm@\&>!7;wP3[EBU`1OC5VD Xa?p S4[NS28;Y[꫙,T1|n;+/ʕj\\,E:! t4.T̡ e1 }; [z^pl@ok0e g@GGHPXNT,مde|*YdT\Y䀰+(T7$ow2缂#G֛ʥ?q NK-/M,WgxFV/FQⷶO&ecx\QLW@H!+{[|{!KAi `cm2iU|Y+ ި [[vxrNE3pmR =Y04,!&0+WC܃@oOS2'Sٮ05$ɤ]pm3Ft GɄ-!y"ӉV . `עv,O.%вKasSƭvMz`3{9+e@eՔLy7W_XtlPK! ѐ'theme/theme/_rels/themeManager.xml.relsM 0wooӺ&݈Э5 6?$Q ,.aic21h:qm@RN;d`o7gK(M&$R(.1r'JЊT8V"AȻHu}|$b{P8g/]QAsم(#L[PK-!pO[Content_Types].xmlPK-!֧6 -_rels/.relsPK-!kytheme/theme/themeManager.xmlPK-!!Z!theme/theme/theme1.xmlPK-! ѐ'( theme/theme/_rels/themeManager.xml.relsPK]# 5o 0 ]ls",h--Q/0126u6789(::<=!"#$)+/013489:<=>ACGKMNOPRUWXZ]^`aR K M W40_ R $7)*,0<22x47P869c:= %&'(*,-.2567;?@BDEFHIJLQSTVY[\_]$Y; G&&P'''R(5XXXXXXX _Hlt397502663 _Hlt3975026645@@5 os>AFJy)34JLV]g4:lpo p  ! / R U z e m t |  !$LR_fnx{v~$~(1WZ '/FJLORUny{ $),EHhk{}   3 6 @ C J R s  !! !!!!0"4">"A"Z"]"w"{""""""""""""""""# ## #'#(#+#.#6#7#:#L#W#Z#i#p#w#x#{#~####################$ $%%\&&(((((((( ))g)m)))))o*t*******+ +!+-+0+4++++++++,,,,+,6,9,:,B,G,S,],`,a,o,,,J-M------ .A.T...e/j///0011(2/2445otRX>ABDFJ4:0 2 ; ? S X d i  ! v y GKLR$lmef^ bdmqdktw_feg- 1 j l m o *!,!-!1!2!6!!!""!"%"""""""""""L#O########$(())o*t*++++++++++t,w,x,,,,e/j/000012(2/233445::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::^\ Isc\ ^`OJQJo(^`OJQJ^Jo(o p^p`OJQJo( @ ^@ `OJQJo(^`OJQJ^Jo(o ^`OJQJo( ^`OJQJo(^`OJQJ^Jo(o P^P`OJQJo(^`.^`CJOJQJo(opp^p`.@ @ ^@ `.^`.^`.^`.^`.PP^P`.Is^\          |0 ~u $t_F|0 vKrt_F{z&,EGSs)&%dir%Dq: dif  A5 I {K ja -N Q " E l $" R X ,k do=d0le. (q|cz& :'a !8KOXlHi&cV~KGz}$ Uz '!;!@!@/"V"}p">$s1%Z%&R&Z'c'(M)e,'-%"/-0bg0R182 2;?263D84S.5B5^7<08V8x9>N;e;,>^h> B?o_?y?$k@i|@:AC#%C-C,D2DpD>ECEI)I1I`IaIsIquIJ%JmJ K\FKWK`K1LMN^N OwzO+P^Pp5SRaST U UK,UgiUUVlV5W XX2YuYoaZZ"\2\^\gj]W_D`u-aFaHa\]ac!c?ctdcVe]fa#f5XfX;g0hGh/oi-jd/j WjQ[jol"ulmmnMnxnu4o][o p-pp dqsuvF6w8w~Ow_wqx&txOyw9yv."uv 4,"b:h[ ZOx Nf%Lq0tD& 'x_+6}7QXA 8oR8wU">V'J]LQtyL6X]O{!2 bwzT `3HSnqNxyJUX!D1^Re xz9xd?o+VDL VZrjxf 7x55@%%%%5@Unknown G*Ax Times New Roman5Symbol3 *Cx Arial7 [ @Verdana5*[`)Tahoma? *Cx Courier New7@ Calibri;WingdingsA$BCambria Math"qhQ6Q6[).-`.-`24443QHP ?^2!xx ,Prepare your scans a.loenhoudChristopher Whelan   Oh+'0 $0 T ` l x'Prepare your scans a.loenhoud Normal.dotmChristopher Whelan2Microsoft Macintosh Word@@P%@&ek@&ek.- ՜.+,D՜.+,D hp  'VUmc`4 Prepare your scans Title( 8@ _PID_HLINKS'A*\O[http://enigma.ini.usc.edu/wp-content/uploads/scripts/make_subcortical_ENIGMA_QC_webpage.shOBYhttp://enigma.ini.usc.edu/wp-content/uploads/scripts/func_make_subcorticalFS_ENIGMA_QC.m_ Dhttp://enigma.ini.usc.edu/wp-content/uploads/scripts/ENIGMA_plots.Ra" http://cran.r-project.org/`j3http://surfer.nmr.mgh.harvard.edu/fswiki/recon-all_5https://surfer.nmr.mgh.harvard.edu/registration.htmlv27https://surfer.nmr.mgh.harvard.edu/fswiki/QuickInstall  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abdefghijklmnoprstuvwxyz{|}~Root Entry F)qData c1Tableq:WordDocument4SummaryInformation(DocumentSummaryInformation8CompObj` F Microsoft Word 97-2004 DocumentNB6WWord.Document.8