Browse Source

Merge remote-tracking branch 'refs/remotes/origin/master'

dustinf1989 3 months ago
parent
commit
7f5dec8390
1 changed files with 27 additions and 1 deletions
  1. 27 1
      README.md

+ 27 - 1
README.md

@@ -1,3 +1,29 @@
 # emotional_memory_neuronal_data
 
-Data for "Neuronal population representation of human emotional memory"
+Data for "Neuronal population representation of human emotional memory"
+
+Neuronal spike trains were obtained using [Combinato](https://github.com/jniediek/combinato) and the outputs of this algorithm are provided for the 5 subjects in the publication.  After downloading the dataset, all results and figures can be reproduced using the code located in the [GitHub repository](https://github.com/dustinf1989/emotional_memory_neuronal_analyses/). Basic details about the files are given below and further described by comments in the code.
+
+## Description of dataset and its organization
+
+The folders enc=encoding and rec=recognition contain data for the respective memory tasks that were performed 24 hours apart.
+
+### **Electrophysiology**
+
+For each subject, there are folders called uXXX# where u stands for microwire, XXX signifies the brain region and # ranges from 1-8 for the microwire identity. The brain regions are defined as follows:
+
+* (Anterior) Hippocampus = "u" + ("HR"|"HL"|"AHR"|"AHL"); 
+* (Posterior) Hippocampus = "u" + ("PHR"|"PHL");
+* Amygdala = "u" + ("AR"|"AL");
+* Entorhinal Cortex = "u" + ("ECR"|"ECL");
+* Pararhinal cortex = "uPCL" (Only located in Patient1, not used)
+
+Inside each folder, there are spike sorting results for both negative and positive spikes saved in Combinato format (for more details see their GitHub). Additionally, spike waveforms and spike times were saved in a mat file called py_spikes_posneg_uXXX#.mat for each microwire with detected waveforms. These files are required for the corresponding code.
+
+### **Behavior**
+
+The file 'all_images.txt' contains the image identities used in all sessions. The 229 images from the IAPS dataset are owned by the [Center for the Study of Emotion and Attention](https://csea.phhp.ufl.edu/) and can only be obtained from them directly, and therefore, we only share the image identies.  The 11 (neutral) images used in our study are provided in the 'images' folder.
+
+The trial times in MATLAB (FieldTrip) format are saved in 'ft_trial_PatientID.mat' files. Additional files to understand the trial types are located inside the behavioral folder e.g., emotional_memory_neuronal_data\rec\Patient1\Rec. The log.res file contains 3 columns corresponding to response (Remember, Know, Forgot or No Response), Reaction time (in samples), and Sample. The 'IAPS_rec.mat' file contains indicies (to index all_images.txt) for the image identity of each trial.
+
+The trial number for each trial types (e.g., eR: emotional remembered, nMiss: neutral missed, etc.) are given in the onsets.mat files and further described in the corresponding MATLAB code.