<div dir="ltr">Oh! Whew. Well, at least there's that. (It's the small things, you know?)<div><br></div><div>But, doesn't that lead to another question? As you can see from the topographies attached, the Attended topography is much higher in amplitude than the unattended (they are on the same color scale). Perhaps this is a moment when my intuition doesn't matter, but wouldn't you expect that the source generating the Attended topography would have greater power than the Unattended source? Or is there something I don't understand here?</div><div><br></div><div>Thanks again for taking the time to respond. I truly appreciate your help.</div><div><br></div><div>Best,</div><div><br></div><div>Tommy</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Jan 25, 2017 at 12:11 PM, Matt Craddock <span dir="ltr"><<a href="mailto:m.p.craddock@leeds.ac.uk" target="_blank">m.p.craddock@leeds.ac.uk</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Sorry Tommy, I misread the sign of my results - they're the same as yours :) I get the NaNs plotting thing sometimes too, never totally sure why as it seems intermittent.<br>
<br>
Cheers,<br>
Matt<span class=""><br>
<br>
On 25/01/2017 16:13, Tommy Wilson wrote:<br>
</span><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">
Hi Matt,<br>
<br>
Thanks so much for your reply here!<br>
<br>
I believe I've correctly implemented your comments: I computed a common<br>
filter by source analyzing the combined (read: averaged) data/covariance<br>
matrix. In a second step, I used this filter to source localize each<br>
condition separately. I subsequently contrasted the two conditions, but<br>
I'm seeing that sourceU.avg.pow > sourceA.avg.pow at about 99% of the<br>
voxels. I attached an image of the ft_sourceplot to this email. (I don't<br>
know why the NaNs aren't masking appropriately, but I can figure that<br>
out on my own time).<br>
<br>
I also attempted your quick and dirty solution to see if I could<br>
reproduce that, and I'm seeing the same thing as above (sourceU.avg.pow<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
sourceA.avg.pow in 99% of voxels), which is exactly the opposite of<br>
</blockquote>
what you said you came up with. (The ft_sourceplot for this scenario<br>
looks identical to the first, which is unsurprising--in both cases, we<br>
used the average covariance matrix to construct the filters, so they<br>
ought to be identical). I must be doing something wrong here, but alas,<br>
I can't seem to put the pieces together.<br>
<br>
Any help/guidance you could provide would be deeply appreciated. I've<br>
attached the updated script to this email (and printed it below for<br>
posterity), and as before, the data can be found here<br></span>
<<a href="https://www.dropbox.com/s/8w99ejwrzmwc5pt/Source_fitting_dump.mat?dl=0" rel="noreferrer" target="_blank">https://www.dropbox.com/s/8w9<wbr>9ejwrzmwc5pt/Source_fitting_<wbr>dump.mat?dl=0</a>>.<div><div class="h5"><br>
<br>
Again, thank you for taking the time to respond.<br>
<br>
Best,<br>
<br>
Tommy<br>
<br>
--- CODE ---<br>
<br>
%% Source fitting protocol<br>
% Fieldtrip path (to find template MRI)<br>
ftdir = 'your\path\here\fieldtrip-2016<wbr>0309';<br>
<br>
% Average both conditions to generate common filter<br>
M = ft_timelockgrandaverage(struct<wbr>(),A,U);<br>
M.cov = mean(cat(3,A.cov,U.cov),3);<br>
<br>
% Equate covariance matrices for now to rule out any differences in the<br>
% source fit due to differences in covariances<br>
% A.cov = U.cov;<br>
<br>
%%% Do the LCMV sourcefitting<br>
cfg                     = [];<br>
cfg.method              = 'lcmv';<br>
cfg.grid                = leadfield;<br>
cfg.vol                 = vol;<br>
cfg.elec                = elec;<br>
cfg.lcmv.lambda         = '15%';<br>
cfg.lcmv.keepfilter     = 'yes';<br>
cfg.lcmv.fixedori       = 'yes';<br>
cfg.lcmv.projectnoise   = 'yes';<br>
<br>
% Generate common filter<br>
sourceM = ft_sourceanalysis(cfg,M);<br>
<br>
% Add the common filter to the cfg<br>
cfg.grid.filter = sourceM.avg.filter;<br>
<br>
% Source fit the originals<br>
sourceA = ft_sourceanalysis(cfg,A);<br>
sourceU = ft_sourceanalysis(cfg,U);<br>
<br>
%%% Matt's quick and dirty version<br>
% Replace A's cov matrix with an average of A.cov and U.cov<br>
tmp = A.cov;<br>
A.cov = mean(cat(3,tmp,U.cov),3);<br>
<br>
cfg                     = [];<br>
cfg.method              = 'lcmv';<br>
cfg.grid                = leadfield;<br>
cfg.vol                 = vol;<br>
cfg.elec                = elec;<br>
cfg.lcmv.lambda         = '15%';<br>
cfg.lcmv.keepfilter     = 'yes';<br>
cfg.lcmv.fixedori       = 'yes';<br>
cfg.lcmv.projectnoise   = 'yes';<br>
<br>
% Generate common test filter<br>
sourceA_common_test = ft_sourceanalysis(cfg,A);<br>
<br>
% Add common filter to configuration<br>
cfg.grid.filter = sourceA_common_test.avg.filter<wbr>;<br>
<br>
% Replace original covariance matrix<br>
A.cov = tmp;<br>
<br>
% Now fit both A and U with the common test filter<br>
sourceA_test = ft_sourceanalysis(cfg,A);<br>
sourceU_test = ft_sourceanalysis(cfg,U);<br>
<br>
<br>
%%% Attempt a contrast<br>
% Create the contrasts<br>
sourceContrast = sourceA;<br>
sourceContrast.avg.pow = sourceA.avg.pow - sourceU.avg.pow;<br>
sourceContrast_test = sourceA_test;<br>
sourceContrast_test.avg.pow = sourceA_test.avg.pow - sourceU_test.avg.pow;<br>
<br>
% Gauge what percent of the contrast is negative (i.e. sourceU power ><br>
% sourceA power)<br>
perc_neg =<br>
sum(sourceContrast.avg.pow(sou<wbr>rceContrast.inside(:))<0)./num<wbr>el(sourceContrast.avg.pow(sour<wbr>ceContrast.inside(:)));<br>
perc_neg_test =<br>
sum(sourceContrast_test.avg.po<wbr>w(sourceContrast_test.inside(:<wbr>))<0)./numel(sourceContrast_<wbr>test.avg.pow(sourceContrast_<wbr>test.inside(:)));<br>
<br>
%%% Visualize the output<br>
% Load template MRI<br>
mri = ft_read_mri([ftdir '\template\anatomy\single_subj<wbr>_T1.nii']);<br>
<br>
% Interpolate source onto MRI<br>
cfg            = [];<br>
cfg.parameter  = 'avg.pow';<br>
sourceContrast_interp  = ft_sourceinterpolate(cfg, sourceContrast, mri);<br>
sourceContrast_test_interp = ft_sourceinterpolate(cfg,<br>
sourceContrast_test, mri);<br>
<br>
% Visualize with ft_sourceplot<br>
cfg = [];<br>
cfg.method        = 'ortho';<br>
cfg.funparameter  = 'avg.pow';<br>
cfg.funcolorlim   = [-100 5];<br>
cfg.maskparameter = cfg.funparameter;<br>
ft_sourceplot(cfg, sourceContrast_interp);<br>
<br>
cfg = [];<br>
cfg.method        = 'ortho';<br>
cfg.funparameter  = 'avg.pow';<br>
cfg.funcolorlim   = [-100 5];<br>
cfg.maskparameter = cfg.funparameter;<br>
ft_sourceplot(cfg, sourceContrast_test_interp);<br>
<br>
On Tue, Jan 24, 2017 at 4:12 PM Matt Craddock <<a href="mailto:m.p.craddock@leeds.ac.uk" target="_blank">m.p.craddock@leeds.ac.uk</a><br></div></div><div><div class="h5">
<mailto:<a href="mailto:m.p.craddock@leeds.ac.uk" target="_blank">m.p.craddock@leeds.ac.<wbr>uk</a>>> wrote:<br>
<br>
    Hi Tommy,<br>
<br>
     > % Equate covariance matrices for now to rule out any differences<br>
    in the<br>
     > % source fit due to differences in covariances<br>
     > U.cov = A.cov;<br>
     ><br>
<br>
    This is the problem. ft_sourceanalysis is using the covariance matrix<br>
    and leadfield to construct a spatial filter for each grid point; if the<br>
    covariance matrices are equivalent, the source solutions will be too.<br>
<br>
    What you need to do is something like run the source analysis on data<br>
    averaged over both conditions first, then take the filter from the<br>
    combined analysis and run source analysis on each condition seperately.<br>
<br>
    so say sourceAll is the result of<br>
    ft_sourceanalysis(cfg,bothCond<wbr>itions)<br>
<br>
    You'd do<br>
<br>
    cfg.grid.filter = sourceAll.avg.filter<br>
<br>
    then<br>
<br>
    ft_sourceanalysis(cfg,A)<br>
    ft_sourceanalysis(cfg,U)<br>
<br>
    As a quick and dirty version I just replaced the covariance matrix in A<br>
    with the average of the two A.cov and U.cov, ran sourceanalysis on that,<br>
    then put A.cov back to its original value and ran sourceanalysis on each<br>
    condition seperately. Spoiler: the unattended condition has lower<br>
    activity everywhere :)<br>
<br>
    There's some weirdness around the boundaries of the headmodel, not sure<br>
    what's causing that exactly. Maybe try using a different source grid<br>
    instead of the standard one...<br>
<br>
    Cheers,<br>
    Matt<br>
<br>
    On 24/01/2017 16:36, Tommy Wilson wrote:<br>
    > Hi Julian,<br>
    ><br>
    > Thank you so much for your reply.<br>
    ><br>
    > I've pasted the commented code below (I apologize for the code dump).<br>
    > I've also attached an m-file to this email if you'd prefer to download<br>
    > it that way. If relevant, you can download the leadfield,<br>
    headmodel and<br>
    > electrode locations here<br>
    ><br>
    <<a href="https://www.dropbox.com/s/8w99ejwrzmwc5pt/Source_fitting_dump.mat?dl=0" rel="noreferrer" target="_blank">https://www.dropbox.com/s/8w9<wbr>9ejwrzmwc5pt/Source_fitting_<wbr>dump.mat?dl=0</a><br>
    <<a href="https://www.dropbox.com/s/8w99ejwrzmwc5pt/Source_fitting_dump.mat?dl=0" rel="noreferrer" target="_blank">https://www.dropbox.com/s/8w9<wbr>9ejwrzmwc5pt/Source_fitting_<wbr>dump.mat?dl=0</a>>><br>
    > (that file also includes the raw data stored in variables A and U<br>
    that I<br>
    > am attempting to source-fit).<br>
    ><br>
    > As per your questions: I do indeed have a contrast between<br>
    attended (A)<br>
    > and unattended (U) conditions. I've written the code below to<br>
    source-fit<br>
    > both conditions and create the contrast. However, despite that the raw<br>
    > topographies (see attached images) are different, the source-fits are<br>
    > the same (...?). As a consequence, the contrast has no non-zero<br>
    values.<br>
    > If instead, I normalize to noise (i.e. generate the Neural Activity<br>
    > Index<br>
    ><br>
    <<a href="http://www.fieldtriptoolbox.org/tutorial/beamformer#neural_activity_index" rel="noreferrer" target="_blank">http://www.fieldtriptoolbox.o<wbr>rg/tutorial/beamformer#neural_<wbr>activity_index</a><br>
    <<a href="http://www.fieldtriptoolbox.org/tutorial/beamformer#neural_activity_index" rel="noreferrer" target="_blank">http://www.fieldtriptoolbox.o<wbr>rg/tutorial/beamformer#neural_<wbr>activity_index</a>>>)<br>
    > and look at a contrast there, we again see no non-zero values.<br>
    ><br>
    > Outside of the contrast, I've implemented your other suggestions. I've<br>
    > rescaled the original ft_sourceplot such that you can see the<br>
    extent of<br>
    > it (see attached image). To my mind, it shouldn't look like this, but<br>
    > having never done this before, I'm not quite sure what to expect. I've<br>
    > also included an image of the ft_sourceplot for the Neural Activity<br>
    > Index of sourceA which also appears to me to be artefactual. More<br>
    to the<br>
    > point, I'd expect that since the topographies for A and U are<br>
    different,<br>
    > the NAIs should be different, which is not the case.<br>
    ><br>
    > I'm sort of at a loss about how to proceed here. So, thank you<br>
    very much<br>
    > for taking the time to look into this. If I can supply anything<br>
    else to<br>
    > help, please don't hesitate to let me know.<br>
    ><br>
    > Best,<br>
    ><br>
    > Tommy Wilson<br>
    ><br>
    > --- CODE ---<br>
    ><br>
    > %% Source fitting protocol<br>
    > % Fieldtrip path (to find template MRI)<br>
    > ftdir = 'your\path\here\';<br>
    ><br>
    > % Equate covariance matrices for now to rule out any differences<br>
    in the<br>
    > % source fit due to differences in covariances<br>
    > U.cov = A.cov;<br>
    ><br>
    > %%% Do the LCMV sourcefitting<br>
    > cfg                     = [];<br>
    > cfg.method              = 'lcmv';<br>
    > cfg.grid                = leadfield;<br>
    > cfg.vol                 = vol;<br>
    > cfg.elec                = elec;<br>
    > cfg.lcmv.lambda         = '15%';<br>
    > cfg.lcmv.keepfilter     = 'yes';<br>
    > cfg.lcmv.fixedori       = 'yes';<br>
    > cfg.lcmv.projectnoise   = 'yes';<br>
    ><br>
    > sourceA = ft_sourceanalysis(cfg,A);<br>
    > sourceU = ft_sourceanalysis(cfg,U);<br>
    ><br>
    ><br>
    > %%% Attempt a contrast<br>
    > % Create the contrast<br>
    > sourceContrast = sourceA;<br>
    > sourceContrast.avg.pow = sourceA.avg.pow - sourceU.avg.pow;<br>
    ><br>
    > % Check to see if any non-zero values exist in the contrast<br>
    > if all(sourceContrast.avg.pow(sou<wbr>rceContrast.inside(:)) == 0)<br>
    >     warning('No non-zero contast values exist. ft_sourceplot will give<br>
    > an error. Do not plot.');<br>
    > end<br>
    ><br>
    ><br>
    > %%% Instead of a contrast, look at the Neural Activity Index (NAI)<br>
    > % See:<br>
    ><br>
    <a href="http://www.fieldtriptoolbox.org/tutorial/beamformer#neural_activity_index" rel="noreferrer" target="_blank">http://www.fieldtriptoolbox.or<wbr>g/tutorial/beamformer#neural_<wbr>activity_index</a><br>
    <<a href="http://www.fieldtriptoolbox.org/tutorial/beamformer#neural_activity_index" rel="noreferrer" target="_blank">http://www.fieldtriptoolbox.o<wbr>rg/tutorial/beamformer#neural_<wbr>activity_index</a>><br>
    > sourceA_NAI = sourceA;<br>
    > sourceA_NAI.avg.pow = sourceA.avg.pow./sourceA.avg.n<wbr>oise;<br>
    > sourceU_NAI = sourceU;<br>
    > sourceU_NAI.avg.pow = sourceU.avg.pow./sourceU.avg.n<wbr>oise;<br>
    ><br>
    > if all(sourceA_NAI.avg.pow(source<wbr>A_NAI.inside(:)) -<br>
    > sourceU_NAI.avg.pow(sourceU_NA<wbr>I.inside(:))==0)<br>
    >     warning('No non-zero contast values exist. ft_sourceplot will give<br>
    > an error. Do not plot.')<br>
    > end<br>
    ><br>
    ><br>
    > %%% Visualize the output<br>
    > % Load template MRI<br>
    > mri = ft_read_mri([ftdir<br>
    > '\fieldtrip-20160309\template\<wbr>anatomy\single_subj_T1.nii']);<br>
    ><br>
    > % Interpolate source onto MRI<br>
    > cfg            = [];<br>
    > cfg.parameter  = 'avg.pow';<br>
    > sourceA_interp  = ft_sourceinterpolate(cfg, sourceA, mri);<br>
    > sourceA_NAI_interp  = ft_sourceinterpolate(cfg, sourceA_NAI, mri);<br>
    ><br>
    > % Visualize with ft_sourceplot<br>
    > cfg = [];<br>
    > cfg.method        = 'ortho';<br>
    > cfg.funparameter  = 'avg.pow';<br>
    > cfg.funcolorlim   = [0 3e3];<br>
    > cfg.maskparameter = cfg.funparameter;<br>
    > ft_sourceplot(cfg, sourceA_interp);<br>
    ><br>
    > cfg = [];<br>
    > cfg.method        = 'ortho';<br>
    > cfg.funparameter  = 'avg.pow';<br>
    > cfg.maskparameter = cfg.funparameter;<br>
    > ft_sourceplot(cfg, sourceA_NAI_interp);<br>
    ><br>
    > On Tue, Jan 24, 2017 at 3:42 AM Julian Keil <<a href="mailto:julian.keil@gmail.com" target="_blank">julian.keil@gmail.com</a><br>
    <mailto:<a href="mailto:julian.keil@gmail.com" target="_blank">julian.keil@gmail.com</a>><br></div></div><div><div class="h5">
    > <mailto:<a href="mailto:julian.keil@gmail.com" target="_blank">julian.keil@gmail.com</a> <mailto:<a href="mailto:julian.keil@gmail.com" target="_blank">julian.keil@gmail.com</a>><wbr>>> wrote:<br>
    ><br>
    >     Hi Tommy,<br>
    ><br>
    >     did you do some sort of contrast (e.g. with the noise estimate<br>
    or a<br>
    >     baseline) after your source analysis?<br>
    >     Right now, it's not clear what you are looking at. Could you paste<br>
    >     your code not only of the sourceanalysis, but the rest after which<br>
    >     got you to the plot?<br>
    >     It might also be the case that the automatic scaling in the source<br>
    >     plot throws you off - maybe try setting it by hand.<br>
    ><br>
    >     Good luck,<br>
    ><br>
    >     Julian<br>
    ><br>
    >     Am 23.01.2017 um 22:00 schrieb Tommy Wilson:<br>
    ><br>
    >     > Hi all,<br>
    >     ><br>
    >     > I'm working with EEG data and I'm trying to get some basic<br>
    source<br>
    >     fitting up and running. Unfortunately, I don't have individual<br>
    >     subject MRIs, so I'm using the templates provided by<br>
    fieldtrip. I've<br>
    >     co-registered my 160 Biosemi electrodes to the standard_bem<br>
    template<br>
    >     (see attached picture). For the sourcemodel, I'm using the<br>
    >     standard_sourcemodel3d5mm grid (picture attached, overlaid on<br>
    >     standard_bem). I can prepare the leadfield from there with<br>
    >     ft_prepare_leadfield (cfg.normalize = 'yes'), as per the LCMV<br>
    tutorial.<br>
    >     ><br>
    >     > To test this configuration, I've selected a time window in<br>
    my data<br>
    >     and averaged across it (the covariance matrix was also<br>
    calculated);<br>
    >     the topography of this averaged data is attached. I then<br>
    attempted a<br>
    >     source fit with the LCMV beamformer:<br>
    >     ><br>
    >     > cfg                     = [];<br>
    >     > cfg.method              = 'lcmv';<br>
    >     > cfg.grid                = leadfield;<br>
    >     > cfg.vol                 = vol;<br>
    >     > cfg.elec                = elec;<br>
    >     > cfg.lcmv.lambda         = '15%';<br>
    >     > cfg.lcmv.keepfilter     = 'yes';<br>
    >     > cfg.lcmv.fixedori       = 'yes';<br>
    >     > cfg.lcmv.projectnoise   = 'yes';<br>
    >     ><br>
    >     > sourceA = ft_sourceanalysis(cfg,A);<br>
    >     ><br>
    >     > After interpolating to the single_subj_T1.nii provided with<br>
    >     ft_sourceinterpolate and plotting with ft_sourceplot, I am given a<br>
    >     sourceplot that is highly focal in nature (see attached picture).<br>
    >     ><br>
    >     > I'd find it very surprising if this topography were generated<br>
    >     primarily by a source that isn't even inside the brain (as the<br>
    >     sourceplot indicates). So, I'm not sure exactly where/how I'm<br>
    going<br>
    >     wrong with this one, nor am I sure how to trouble shoot it. Any<br>
    >     guidance you might provide would be greatly appreciated.<br>
    >     ><br>
    >     > Thanks so much,<br>
    >     ><br>
    >     > Tommy<br>
    >     ><br>
    >     > <Grid.PNG><Electrode<br>
    ><br>
     localization.PNG><Topo.PNG><S<wbr>ource.PNG>____________________<wbr>___________________________<br>
    >     > fieldtrip mailing list<br>
    >     > <a href="mailto:fieldtrip@donders.ru.nl" target="_blank">fieldtrip@donders.ru.nl</a> <mailto:<a href="mailto:fieldtrip@donders.ru.nl" target="_blank">fieldtrip@donders.ru.n<wbr>l</a>><br></div></div>
    <mailto:<a href="mailto:fieldtrip@donders.ru.nl" target="_blank">fieldtrip@donders.ru.n<wbr>l</a> <mailto:<a href="mailto:fieldtrip@donders.ru.nl" target="_blank">fieldtrip@donders.ru.n<wbr>l</a>>><span class=""><br>
    >     > <a href="https://mailman.science.ru.nl/mailman/listinfo/fieldtrip" rel="noreferrer" target="_blank">https://mailman.science.ru.nl/<wbr>mailman/listinfo/fieldtrip</a><br>
    <<a href="https://mailman.science.ru.nl/mailman/listinfo/fieldtrip" rel="noreferrer" target="_blank">https://mailman.science.ru.nl<wbr>/mailman/listinfo/fieldtrip</a>><br>
    ><br>
    >     _____________________________<wbr>__________________<br>
    >     fieldtrip mailing list<br>
    >     <a href="mailto:fieldtrip@donders.ru.nl" target="_blank">fieldtrip@donders.ru.nl</a> <mailto:<a href="mailto:fieldtrip@donders.ru.nl" target="_blank">fieldtrip@donders.ru.n<wbr>l</a>><br></span>
    <mailto:<a href="mailto:fieldtrip@donders.ru.nl" target="_blank">fieldtrip@donders.ru.n<wbr>l</a> <mailto:<a href="mailto:fieldtrip@donders.ru.nl" target="_blank">fieldtrip@donders.ru.n<wbr>l</a>>><span class=""><br>
    >     <a href="https://mailman.science.ru.nl/mailman/listinfo/fieldtrip" rel="noreferrer" target="_blank">https://mailman.science.ru.<wbr>nl/mailman/listinfo/fieldtrip</a><br>
    <<a href="https://mailman.science.ru.nl/mailman/listinfo/fieldtrip" rel="noreferrer" target="_blank">https://mailman.science.ru.nl<wbr>/mailman/listinfo/fieldtrip</a>><br>
    ><br>
    ><br>
    ><br>
    > ______________________________<wbr>_________________<br>
    > fieldtrip mailing list<br>
    > <a href="mailto:fieldtrip@donders.ru.nl" target="_blank">fieldtrip@donders.ru.nl</a> <mailto:<a href="mailto:fieldtrip@donders.ru.nl" target="_blank">fieldtrip@donders.ru.n<wbr>l</a>><br>
    > <a href="https://mailman.science.ru.nl/mailman/listinfo/fieldtrip" rel="noreferrer" target="_blank">https://mailman.science.ru.nl/<wbr>mailman/listinfo/fieldtrip</a><br>
    <<a href="https://mailman.science.ru.nl/mailman/listinfo/fieldtrip" rel="noreferrer" target="_blank">https://mailman.science.ru.nl<wbr>/mailman/listinfo/fieldtrip</a>><br>
    ><br>
    ______________________________<wbr>_________________<br>
    fieldtrip mailing list<br>
    <a href="mailto:fieldtrip@donders.ru.nl" target="_blank">fieldtrip@donders.ru.nl</a> <mailto:<a href="mailto:fieldtrip@donders.ru.nl" target="_blank">fieldtrip@donders.ru.n<wbr>l</a>><br>
    <a href="https://mailman.science.ru.nl/mailman/listinfo/fieldtrip" rel="noreferrer" target="_blank">https://mailman.science.ru.nl/<wbr>mailman/listinfo/fieldtrip</a><br>
    <<a href="https://mailman.science.ru.nl/mailman/listinfo/fieldtrip" rel="noreferrer" target="_blank">https://mailman.science.ru.nl<wbr>/mailman/listinfo/fieldtrip</a>><br>
<br>
<br>
<br>
______________________________<wbr>_________________<br>
fieldtrip mailing list<br>
<a href="mailto:fieldtrip@donders.ru.nl" target="_blank">fieldtrip@donders.ru.nl</a><br>
<a href="https://mailman.science.ru.nl/mailman/listinfo/fieldtrip" rel="noreferrer" target="_blank">https://mailman.science.ru.nl/<wbr>mailman/listinfo/fieldtrip</a><br>
<br>
</span></blockquote><div class="HOEnZb"><div class="h5">
______________________________<wbr>_________________<br>
fieldtrip mailing list<br>
<a href="mailto:fieldtrip@donders.ru.nl" target="_blank">fieldtrip@donders.ru.nl</a><br>
<a href="https://mailman.science.ru.nl/mailman/listinfo/fieldtrip" rel="noreferrer" target="_blank">https://mailman.science.ru.nl/<wbr>mailman/listinfo/fieldtrip</a><br>
</div></div></blockquote></div><br></div>