-
Notifications
You must be signed in to change notification settings - Fork 12
Description
Good morning,
I have a question regarding the generation of surrogate maps of brain atrophy while combining cortical and subcortical regions (including basal ganglia, brainstem, cerebellar lobules and small brainstem nuclei), and belonging to four different atlases.
The goal is then to use these surrogate maps for spatial null models, to test the significance of the empirical variance of principal components of a partial least square analysis between gene expression data (X) and atrophy values (Y).
I have already seen the discussion in issue #22, but I'm still unsure about the approach to use to generate surrogate maps and about the accuracy of combining cortical and subcortical regions.
Here is the approach that I used:
- I extracted centroids for my different cortical and subcortical regions with netneurotools using this command
netneurotools.utils.get_centroids(img, labels=labels, image_space=True) - Then I converted these coordinates into a pairwise distance matrix with the Brain Connectivity toolbox to fit Brainsmash input requirements.
- Finally, I ran this piece of code from Brainsmash to generate the surrogate maps.
base = Base(x=brain_map_file, D=dist_mat_file)
surrogates = base(n=1000)
The spatial null models based on these surrogate maps are not significant (p=0.09) while the random null models showed significance (p<0.001). When I run the model only on cortical regions, the spin test becomes significant, which is not the case with subcortical regions only. This is surprising given that the atrophy involves mainly subcortical regions while the cortex is relatively spared.
If you have any insights or suggestions regarding these findings or alternative approaches I could explore, I would greatly appreciate your input.
Thanks!
Lydia