Dear Experts,
I am attempting to replicate the methodology described in the following paper and have a few questions that I hope you can help clarify:
Wang, S., Zhang, F., Zeng, Q., Hong, H., Zhang, Y., Xie, L., Lin, M., Jiaerken, Y., Yu, X., Zhang, R., Luo, X., Li, K., Xu, X., Hassanzadeh-Behbahani, S., Lin, B., Rushmore, J., Wang, C., Rathi, Y., Makris, N., Huang, P., … Alzheimer’s Disease Neuroimaging Initiative (2025). Association of Superficial White Matter Microstructure With Cortical Pathology Deposition Across Early Stages of the AD Continuum. Neurology , 105(2), e213666. https://doi.org/10.1212/WNL.0000000000213666
Q1: I first ran ukftractography
on my preprocessed DWI data and then applied whitematteranalysis
to cluster fiber tracts and obtain microstructure measures for each anatomical tract. Below is the code I used. Could you confirm whether this workflow is correct?
## Run 2-Tensor tractography with free water
ukf.py --bvals dwi.bval --bvecs dwi.bvec -i dwi.nii.gz -m dwi_brainmask.nii.gz -o dwi.vtk \
--params '--seedingThreshold',0.1,'--stoppingFA',0.08,'--stoppingThreshold',0.06,--freeWater,--recordFA,--recordTrace,--recordFreeWater
## Run fiber clustering and measurement
wm_apply_ORG_atlas_to_subject.sh \
-i ${input_dir}/dwi.vtk \
-o ${output_dir} \
-a ${atlas_dir}/ORG-Atlases-1.1.1 \
-s ${soft_dir}/Slicer-5.8.1-linux-amd64/Slicer \
-d 1 \
-m ${soft_dir}/Slicer-5.8.1-linux-amd64/slicer.org/Extensions-33241/SlicerDMRI/lib/Slicer-5.8/cli-modules/FiberTractMeasurements
Q2: In Wang et al. (2025), three microstructure measures were evaluated: free water fraction (FW), free-water-corrected fractional anisotropy (FAt), and free-water-corrected mean diffusivity (MDt). After running wm_apply_ORG_atlas_to_subject.sh
, I obtained FA and MD values for each tensor. How can I derive the FAt and MDt measures used in the paper?
Q3: The paper mentions that 396 superficial white matter (SWM) fiber clusters were considered. In my output, I only obtained 800 clusters grouped into 74 anatomical tracts. How could I obtain the mappings between the 800 clusters and the 74 anatomical tracts so that I can identify the 396 SWM clusters?
Thank you in advance for your assistance!