-
Notifications
You must be signed in to change notification settings - Fork 141
Identify human Stratum Proprium of Interparietal Sulcus
This documentation describe how to identify the human Stratum proprium of Interparietal Sulcus (SIPS) from diffusion MRI dataset, as described in Uesaki et al. (2017). Human SIPS is a white matter tract in human parietal cortex initially identified by Sachs (1892), and later by Vergani et al. (2014).
Note: This tutorial is still under development.
The code required for human SIPS identification is hosted in following repository (open to public upon publication of the paper): https://github.com/htakemur/SIPS
We plan to include it as a part of AFQ repository in the future.
To identify human SIPS, we need to install several different software distributions together with MATLAB.
Following softwares are optional, but also highly recommended to install:
- Preprocessed Diffusion MRI dataset (nifti format)
- T1-weighted Anatomical image (nifti format)
These images should be coregistered prior to run the subsequent analysis process.
First step of the analysis is to run the Freesurfer command for tissue segmentation, using recon-all command. This will typically require about one day for one single subject.
Example usage is:
recon-all -i t1.nii.gz -subjid HCP_001 -all
where -i requires the file name of nifti file (T1-weighted image), and -subjid requires the subject ID used for defining Freesurfer subject directory.
See Freesurfer Wiki to figure out how to install and set up subject folder to run Freesurfer segmentation.
Second step is to generate whole-brain candidate streamlines using tractography. Vistasoft requires the specific format to identify streamlines, but code for the conversion from several tools (MRTrix, Camino) are available.
The recommended pipeline for identifying the human SIPS is to use CSD-based Anatomically Constrained Tractography (ACT; Smith et al. 2012 NeuroImage), implemented in MrTrix3. The documentation of ACT is here.
In order to define the cortical ROI used for identifying SIPS, we need to perform following steps.
- Convert freesurfer format into vistasoft format. We use the function named fs_roisFromAllLabels in vistasoft.
Example usage:
fs_subjid = {'HCP_001','HCP_002','HCP_003'};
% List of subject id used in Freesurfer processing
fsdir = '/data/freesurfer'; % Freesurfer directory
fsfile = '/mri/aparc+aseg.mgz'; % The mgz file including ROI information
anatomyfolder = '/data/HCP/anatomy'; % Path to folder with T1 anatomy file
% Loops for running individual subjects
for i = 1:length(fs_subjid)
fsIn = fullfile(fsdir, fs_subjid{i},fsfile);
outDir = fullfile(fsdir,'FSROI',fs_subjid{i}); % The directory for output files
type = 'nifti'; % nifti or mat
refT1 = fullfile(anatomyfolder,fs_subjid{i},'t1_acpc.nii.gz'); % Full path to T1 anatomy file
mkdir(outDir);
% Run conversion
fs_roisFromAllLabels(fsIn,outDir,type,refT1);
end
- Use SPIS_convertROI.m to create ROI files to identify SIPS.
% Path to the folder storing ROI file created in an above step
fsFolder = '/data/freesurfer/FSROI/HCP_001';
% Path to T1-weighted anatomy file
anatomyfile = '/data/HCP/anatomy/HCP_001/t1_acpc.nii.gz';
% Run
SIPS_convertROI(fsFolder, anatomyFile)
Uesaki, M., Takemura, H. & Ashida, H. (2017) Computational neuroanatomy of human stratum proprium of interparietal sulcus. bioRxiv, 126961.
Sachs H. (1892) Das hemisphärenmark des menschlichen grosshirns. Leipzig: Verlag von georg thieme.
Vergani F, Mahmood S, Morris CM, Mitchell P, Forkel SJ. (2014) Intralobar fibers of the occipital lobe: a post mortem dissection study. Cortex. 56:145–156.
- Vistasoft
- Getting Started
- mrVista Overview
- Anatomy
- Functional MRI
- mrVista
- Retinotopy tutorial
- Population RF methods also prf Model, prf_tutorial, prf tutorial
- Diffusion weighted MRI
- Visualization
- Tractography
- Tutorials
- Software overview