<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class="">
Hi Philip, 
<div class=""><br class="">
</div>
<div class="">That’s indeed correct: the ‘pos’-field is exchangeable. The idea behind topologically equivalent is the fact that corresponding vertices (in different subject-specific meshes) are aligned once these meshes are inflated into a sphere.</div>
<div class=""><br class="">
</div>
<div class="">Best wishes,.</div>
<div class="">Jan-Mathijs</div>
<div class=""><br class="">
<div><br class="">
<blockquote type="cite" class="">
<div class="">On 25 Dec 2020, at 02:09, Philip Cho <<a href="mailto:pnc9@georgetown.edu" class="">pnc9@georgetown.edu</a>> wrote:</div>
<br class="Apple-interchange-newline">
<div class="">
<div dir="ltr" class="">Thank you so much! I really appreciate the help -- the cortical atlas was exactly what I was looking for. You mentioned that the atlas is defined from the same topological mesh as the individual subject data, but I noticed that the .pos
 fields are different between the two, and FieldTrip is asking that I interpolate. Is it appropriate to just set source.pos=atlas.pos and move forward? I'm getting results that seem potentially feasible, but I'm hesitant whether that step was done appropriately.
 Thanks again!
<div class=""><br class="">
</div>
<div class="">Best,</div>
<div class="">Philip</div>
</div>
<br class="">
<div class="gmail_quote">
<div dir="ltr" class="gmail_attr">On Sun, Dec 20, 2020 at 4:42 AM Schoffelen, J.M. (Jan Mathijs) <<a href="mailto:jan.schoffelen@donders.ru.nl" class="">jan.schoffelen@donders.ru.nl</a>> wrote:<br class="">
</div>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
Dear Philip,<br class="">
<br class="">
You’re right: since the source model that you used for inverse modelling is strictly constrained to the neocortex, the inverse result does not cover subcortical structures.
<br class="">
In general, I’d recommend against using a volumetrically defined parcellation (as is the AAL atlas shipped with FieldTrip) for a cortically-constrained source reconstruction (or the other way around).<br class="">
<br class="">
I suggest you use the finer-grained Brodmann area constrained cortical atlas as available in the “Sensory modality independent activation of the brain network for language” data sharing collection on the Donders data repository. I noticed your name on the history
 of this collection, so I’d assume you know where to find it. The relevant file is the one whose name starts with “atlas”, in the metadata&templates folder. This atlas is defined on exactly the same topological mesh as the individual subject data, which makes
 the parcellation step very straightforward.<br class="">
<br class="">
Next to this, I’d recommend you to have a look at the relatively new ‘ft_virtualchannel’ function. There is a little bit of documentation on the website about this. The bottom line is, that this function supports a parcellation (in addition to a source-level
 structure with spatial filters and sensor level single trial data) in the input. This allows you to obtain parcel-level single trial time series, which is not possible with ft_sourceparcellate.<br class="">
<br class="">
Best wishes,<br class="">
Jan-Mathijs<br class="">
<br class="">
<br class="">
> On 20 Dec 2020, at 09:06, Philip Cho <<a href="mailto:pnc9@georgetown.edu" target="_blank" class="">pnc9@georgetown.edu</a>> wrote:<br class="">
> <br class="">
> Dear FieldTrip Community,<br class="">
> <br class="">
> I am currently trying to obtain the source-level signal in a few anatomically defined ROIs, and so I'm interpolating the AAL atlas onto the 8196-vertex cortical surface template (since I previously used that to inverse-normalize onto my subject MRIs), and
 I'm using ft_sourceparcellate to obtain my results. However, I'm facing an error, which I believe stems from the fact that some labels (e.g. putamen, pallidum, cerebellum, vermis) are not present in my tissue after interpolation. Please let me know if any
 advice is available. Thank you very much.<br class="">
> <br class="">
> My code is as follows:<br class="">
> <br class="">
> function parc_source = mous2_sourceParcellate(sublist)<br class="">
> <br class="">
> %load atlas<br class="">
> atlas = ft_read_atlas('C:\fieldtrip-20201205\template\atlas\aal\ROI_MNI_V4.nii');<br class="">
> <br class="">
> %load sourcemodel (to get its .pos field)<br class="">
> ftpath   = 'C:\fieldtrip-20201205';<br class="">
> sourcemodel = ft_read_headshape(fullfile(ftpath, 'template\sourcemodel\cortex_8196.surf.gii'));<br class="">
> <br class="">
> cfg_int = [];<br class="">
> cfg_int.interpmethod = 'nearest';<br class="">
> cfg_int.parameter = 'tissue';<br class="">
> atlas_int = ft_sourceinterpolate(cfg_int,atlas,sourcemodel);<br class="">
> <br class="">
> for sub = sublist<br class="">
>     %load source<br class="">
>     load(['D:\MOUS2\results\sourceanalysis_low_depth\source_low_depth_' sub{1} '.mat']);<br class="">
>     source_allWords = ft_datatype_source(source_allWords);<br class="">
>     source_allWords.pos = sourcemodel.pos;<br class="">
>     <br class="">
>     %parcellate<br class="">
>     cfg = [];<br class="">
>     cfg.method = 'mean';<br class="">
>     cfg.parameter = 'all';<br class="">
>     parc_source = ft_sourceparcellate(cfg,source_allWords,atlas_int);<br class="">
> end<br class="">
> <br class="">
> <br class="">
> <br class="">
> And the last part of the command line message, including the error, is as follows:<br class="">
> <br class="">
> there is no "Putamen_L" in "tissue"<br class="">
> there is no "Pallidum_L" in "tissue"<br class="">
> there is no "Pallidum_R" in "tissue"<br class="">
> there is no "Cerebellum_Crus1_R" in "tissue"<br class="">
> there is no "Cerebellum_Crus2_L" in "tissue"<br class="">
> there is no "Cerebellum_Crus2_R" in "tissue"<br class="">
> there is no "Cerebellum_3_L" in "tissue"<br class="">
> there is no "Cerebellum_3_R" in "tissue"<br class="">
> there is no "Cerebellum_4_5_L" in "tissue"<br class="">
> there is no "Cerebellum_6_L" in "tissue"<br class="">
> there is no "Cerebellum_6_R" in "tissue"<br class="">
> there is no "Cerebellum_7b_L" in "tissue"<br class="">
> there is no "Cerebellum_7b_R" in "tissue"<br class="">
> there is no "Cerebellum_8_L" in "tissue"<br class="">
> there is no "Cerebellum_8_R" in "tissue"<br class="">
> there is no "Cerebellum_9_L" in "tissue"<br class="">
> there is no "Cerebellum_9_R" in "tissue"<br class="">
> there is no "Cerebellum_10_L" in "tissue"<br class="">
> there is no "Cerebellum_10_R" in "tissue"<br class="">
> there is no "Vermis_1_2" in "tissue"<br class="">
> there is no "Vermis_3" in "tissue"<br class="">
> there is no "Vermis_4_5" in "tissue"<br class="">
> there is no "Vermis_6" in "tissue"<br class="">
> there is no "Vermis_7" in "tissue"<br class="">
> there is no "Vermis_8" in "tissue"<br class="">
> there is no "Vermis_9" in "tissue"<br class="">
> there is no "Vermis_10" in "tissue"<br class="">
> Warning: using "tissue" for the parcellation <br class="">
>  In ft_sourceparcellate at line 117<br class="">
> <br class="">
> there are in total 8196 positions, 8196 positions are inside the brain, 7222 positions have a label<br class="">
> 7222 of the positions inside the brain have a label<br class="">
> 7222 of the labeled positions are inside the brain<br class="">
> 974 of the positions inside the brain do not have a label<br class="">
> creating 116 parcels for parameter mom by taking the mean<br class="">
> computing parcellation<br class="">
> Index exceeds the number of array elements (0).<br class="">
> <br class="">
> Error in ft_sourceparcellate>cellmean1 (line 488)<br class="">
> y = x{1};<br class="">
> <br class="">
> Error in ft_sourceparcellate (line 226)<br class="">
>           tmp(j,:,:) = cellmean1(dat(seg==j));<br class="">
> <br class="">
> Error in mous2_sourceParcellate (line 25)<br class="">
>     parc_source = ft_sourceparcellate(cfg,source_allWords,atlas_int);<br class="">
> _______________________________________________<br class="">
> fieldtrip mailing list<br class="">
> <a href="https://mailman.science.ru.nl/mailman/listinfo/fieldtrip" rel="noreferrer" target="_blank" class="">
https://mailman.science.ru.nl/mailman/listinfo/fieldtrip</a><br class="">
> <a href="https://doi.org/10.1371/journal.pcbi.1002202" rel="noreferrer" target="_blank" class="">
https://doi.org/10.1371/journal.pcbi.1002202</a><br class="">
<br class="">
<br class="">
_______________________________________________<br class="">
fieldtrip mailing list<br class="">
<a href="https://mailman.science.ru.nl/mailman/listinfo/fieldtrip" rel="noreferrer" target="_blank" class="">https://mailman.science.ru.nl/mailman/listinfo/fieldtrip</a><br class="">
<a href="https://doi.org/10.1371/journal.pcbi.1002202" rel="noreferrer" target="_blank" class="">https://doi.org/10.1371/journal.pcbi.1002202</a><br class="">
</blockquote>
</div>
_______________________________________________<br class="">
fieldtrip mailing list<br class="">
<a href="https://mailman.science.ru.nl/mailman/listinfo/fieldtrip" class="">https://mailman.science.ru.nl/mailman/listinfo/fieldtrip</a><br class="">
https://doi.org/10.1371/journal.pcbi.1002202<br class="">
</div>
</blockquote>
</div>
<br class="">
</div>
</body>
</html>