Hi everyone, I'm computing segmentation with CAT12 directly with the SPM toolbox. It allows to compute other cortical measures like gyrification index, sulcal depth and cortical complexity. These file are stored in the same way of the thickness file, one for each hemisphere. Unfortunately, brainstorm does not automatically import also the sulcal depth and the gyrification index. The brainstorm function to import CAT 12 folder + thickness finds and imports the thickness with these code lines:
% Find thickness maps
if isExtraMaps
ThickLhFile = file_find(CatDir, 'lh.thickness.', 2);
ThickRhFile = file_find(CatDir, 'rh.thickness.', 2);
end
%% ===== IMPORT THICKNESS MAPS =====
if isExtraMaps && ~isempty(CortexHiFile) && ~isempty(ThickLhFile) && ~isempty(ThickLhFile)
% Create a condition "CAT12"
iStudy = db_add_condition(iSubject, 'CAT12');
% Import cortical thickness
ThickFile = import_sources(iStudy, CortexHiFile, ThickLhFile, ThickRhFile, 'FS');
end
Considering that sulcal depth and gyrification index are stored in the same way of thickness, if I add some code lines like:
% Find gyridication index
if isExtraMaps
GyriLhFile = file_find(CatDir, 'lh.gyrification.', 2);
GyriRhFile = file_find(CatDir, 'rh.gyrification.', 2);
end
and then I import the data in the same way of the thickness,
%% ===== IMPORT Gyrification index =====
if isExtraMaps && ~isempty(CortexHiFile) && ~isempty(GyriLhFile) && ~isempty(GyriLhFile)
% Create a condition "CAT12"
iStudy = db_add_condition(iSubject, 'CAT12');
% Import gyrification map
GyriFile = import_sources(iStudy, CortexHiFile, GyriLhFile, GyriRhFile, 'FS');
end
do you think it could work?
Thanks