This repository contains code and data accompanying the following paper:
Representation of Abstract Semantic Knowledge in Populations of Human Single Neurons in the Medial Temporal Lobe
Thomas P. Reber1,2*, Marcel Bausch1, Sina Mackay1, Jan Boström3, Christian E. Elger1, Florian Mormann1
1 Department of Epileptology, University of Bonn Medical Centre, Bonn, Germany
2 Faculty of Psychology, Swiss Distance Learning University, Brig, Switzerland
3 Department of Neurosurgery, University of Bonn Medical Centre, Bonn, Germany
If you have any questions, please contact treber@uni-bonn.de. All data files and code are in Matlab format.
We used Matlab R2017 with the statistics and machine learning toolbox, the signal processing toolbox, and the image processing toolbox. To reproduce the figures in the manuscript, start matlab, navigate to the repository-folder and add it to the matlabpath:
cd('/Path/to/this/repo');
addpath(pwd);
Then call one of these functions:
figure1.m
: single unit examplesfigure2.m
: Unit descriptives, Selecitivity and Response-Probabilitiesfigure3orS2.m
: RSAs. To produce Figure S2, set the variablewhichUnits
on line 63 to'firstSessionPerPatient'
.figure4.m
: Decoding results. reads output fromospr_classify.m
(see below).figureS1.m
: Stimuli OverviewfigureS3.m
: RSA on image similarities. Uses data generated bycalcualte_image_similarities.m
.figureS4.m
: Just plot the dendrograms of figure3, but largerfigureS5orS6.m
: classification analyses, separate for subjects - plots results generated byospr_classify_per_subject.m
Further .m files in this repository are included because they are called by the above scripts at some point or another.
Containes z-scored firing rates for each stimulus-unit combination, and some lookup variables. Please refer to the paper for the methods used to obtain these z-scores.
zvals
: a nunits X nstimuli matrix of zscorescluster_lookup
: a table with nunits rows and 8 columns with infos on the units (such as anatomical location, SU vs. MU, etc) rows in this table correspond to rows in zvals variable abovestim_lookup
: a cell of size nstimuli, i.e., 100 of names of the presented images (e.g., wild_animals_6). Entries correspond to the columns in zvals variable above.cat_lookup
: a cell of size nstimuli = 100 of names of the category the images belong to. Entries correspond to the columns in zvals variable above.
Containes z-scored firing rates for each trial-unit combination, and some lookup variables. Please refer to the paper for the methods used to obtain these z-scores.
zvals
: a nunits X nstrials matrix of zscorescluster_lookup
: a table with nunits rows and 8 columns with infos on the units (such as anatomical location, SU vs. MU, etc) rows in this table correspond to rows in zvals variable abovestim_lookup
: a cell of size ntrials, i.e., 1000 of names of the presented images (e.g., wild_animals_6) entries correspond to the columns in zvals variable abovecat_lookup
: a cell of size ntrials, i.e., 1000 of names of the category the images belong to entries correspond to the columns in zvals variable above
Containes whether a stimulus elicited a neuronal response for each unit-stimulus combination.
consider_rs
: a nunits X nstimuli matrix of booleans that have the value 'true' if a stimulus elicits a response according to the criterion mentionen in the paperpvals_rs
: a nunits X nstimuli matrix of p-values resulting from the binwise signed rank test mention in the paperpcrit_rs
: the alpha-level at which the binwise ranksum test is considered 'significant'cluster_lookup
: a table with nunits rows and 8 columns with infos on the units (such as anatomical location, SU vs. MU, etc) rows in this table correspond to rows in zvals variable abovestim_lookup
: a cell of size nstimuli, i.e., 100 of names of the presented images (e.g., wild_animals_6) entries correspond to the columns in theconsider_rs
andpvals_rs
variables abovecat_lookup
: a cell of size nstimuli, i.el, 100 of names of the category the images belong to entries correspond to the columns inconsider_rs
andpvals_rs
variables above
.mat files starting classification_results
are output produced by the script ospr_classify.m
mentioned above. For details on the coding anlyses, please refer to the method section of the paper or inspect ospr_classify.m
and ospr_doclassperm.m
.
Contains a struct with names of anatomical Regions, i.e., AM, HC, EC, PHC, and the names of electrode localizations (sites) assign to anatomical regions e.g.
regions(1).name = 'AM' % Amygdala
regions(1).sites = {'RA', 'LA'}; % for wires in left and right amygdala
Note that data in the .mat files also includes units that are not reported int the paper as the units were recorded in anatomical regions outside the MTL. Such units are identified by:
idx = strcmp(cluster_lookup.regionname == 'other');
Contains structs cherries
with the field cherries.trial
. Ich entry there, contains spike times relative to stimulus onset. The strcut conditions
contains lookup variables to identify trials of interest. Please refer to figure1.m
for examples of how these data can be analyzed.
Contains non-segmented data on sorted spikes in the format of https://github.com/csn-le/wave_clus.
All images used as stimuli can be found in the stimulus
directory.