User Tools

Site Tools


analysis:course-w16:week16

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

analysis:course-w16:week16 [2016/02/28 20:56]
mvdm [Introduction]
analysis:course-w16:week16 [2018/07/07 10:19]
Line 1: Line 1:
-~~DISCUSSION~~ 
  
-:!: **UNDER CONSTRUCTION,​ PLEASE DO NOT USE YET** :!: 
- 
-===== Pairwise co-occurrence ===== 
- 
-==== Goals ==== 
- 
-  * Learn to think about possible ensemble firing patterns and ways to characterize them 
-  * Apply a permutation test (shuffle) to determine levels of chance (independent) co-occurrence 
- 
-==== Introduction ==== 
- 
-As you have seen in the module on [[analysis:​course-w16:​week10|decoding]],​ hippocampal place cells tend to be active in specific locations within an environment. As a rat moves, it passes through a number of place fields: 
- 
-{{ :​analysis:​course-w16:​copy_of_placefieldsthesis.png?​nolink&​400 |}} 
- 
-Consider this rat moving from right to left on a linear track. Passing through the place field of each cell (indicated by different colored circles) the firing order will be blue-cyan-green-yellow-orange-red. This firing order corresponds to the order different locations in the environment were experienced. 
- 
-In rats, memories of past experiences may be re-expressed in association with sharp wave-ripples (SWRs) in the local field potential: the spiking order of place cells during rest is correlated with the field order experienced in the environment (Wilson & McNaughton 1994; Foster & Wilson 2006; Karlsson et al. 2009). This non-local, ordered spiking activity has been called "​replay":​ 
- 
-{{ :​analysis:​course-w16:​template_schematic.png?​nolink&​600 |}} 
- 
-Shown schematically are three putative SWRs, associated with a "​forward"​ replay (cells active in same order as experienced),​ an indeterminate replay (no order detectable; may be a replay of some different experience from which we do not know the correct place cell order), and a "​reverse"​ replay. 
- 
-Suppose we want to quantify how much a rat is recalling a certain location (or experience) in the environment. We could identify how many times certain trajectories are replayed, like the left trajectory or the right trajectory along arms of a T-maze. There are a few ways of doing this, including co-activation analysis, sequence analysis, and decoding. This module will cover co-activation analysis. 
- 
-Overview of sharp wave-ripple associated spiking activity analyses: 
- 
-  * **Co-activation analysis** (covered here): are place fields active together during sharp wave-ripple events? 
-  * Sequence analysis: is spiking order (in time) correlated with field order (on the track)? 
-  * Decoding: given what we know about field locations (tuning curves), does a given combination of spikes represent a place in the environment? ​ 
- 
-==== Co-activation:​ concept and overall workflow ====  
- 
-Co-activation or co-occurrence analysis allows us to examine the content of "​replay"​ without direct reference to the field order of place cells in the environment. By grouping place cells into categories such as "​left-arm place cells" and "​right-arm place cells" we can ask if left cells are significantly more active together than right cells, which would suggest that the rat may have been recalling the left arm more frequently than the right arm. 
- 
-(Add concept figure here.) 
- 
-The logic of looking at pairwise co-occurrence is that if a random selection of cells is active in each SWR, then their co-occurrence would not differ from what we expect based on the activity of each cell individually. (This will be made more explicit below.) If, in contrast, spiking patterns during SWRs form sequences, as in the diagram above, then cells with nearby place fields will tend to be active together. 
- 
-The overall workflow for co-occurrence analysis looks like this: 
- 
-  - **Generate candidate events**: these are intervals that may contain replays, generally associated with sharp wave-ripple events (SWRs) in the LFP 
-  - **Estimate place fields**: get locations in the environment where cells increased their firing rates during behavior 
-  - **Categorize place cells**: we want cells that were active on the left or right arm only. 
-  - **Make a Q-matrix**: Bin spiking activity during SWRs. 
-  - **Get cell participation during SWRs**: are right or left cells more active during SWRs? 
-  - **Get joint probability for cell pairs**: how often are right cells active together? How often are left cells active together? 
-  - **Get z-scored coactivity for cell pairs**: are the cell pairs co-active at greater than chance levels? (If the cells are firing randomly, we still expect them to co-occur to some degree) 
- 
-==== Step-by-step ==== 
- 
-=== Setup and data loading === 
- 
-First, make sure you do a ''​git pull''​ as usual, and get the data. We'll be using session ''​R064-2015-04-22''​. You'll also need to include the ''​tasks\Alyssa-Tmaze''​ and ''​tasks\ReplayAnalysis''​ folders in your path. 
- 
-Then, we load the data: 
- 
-<code matlab> 
-% first, cd to where your data lives 
-LoadExpKeys 
-cfg = []; cfg.fc = ExpKeys.goodSWR(1);​ 
-CSC = LoadCSC(cfg);​ 
- 
-cfg = []; cfg.load_questionable_cells = 1; % load all cells we've got 
-S = LoadSpikes(cfg);​ 
- 
-cfg = []; cfg.convFact = ExpKeys.convFact;​ % conversion factor from camera pixels to centimeters (see PosCon()) 
-pos = LoadPos(cfg);​ 
-</​code>​ 
- 
-=== Generating candidate events === 
- 
-This was covered in Module 6. You can use your own code for detecting sharp wave-ripples (SWRs), or the code below (just make sure your variable is called ‘evt’): 
- 
-<code matlab> 
-cfg = []; 
-cfg.type = '​fdesign';​ % doit4me 
-cfg.f = [140 250]; % frequencies present in ripples 
-CSCf = FilterLFP(cfg,​CSC);​ 
- 
-% Obtain envelope 
-envelope = abs(CSCf.data);​ 
- 
-% Convolve with a gaussian kernel (improves detection) 
-kernel = gausskernel(60,​20);​ % note, units are in samples; for paper Methods, need to specify Gaussian SD in ms 
-envelope = conv(envelope,​kernel,'​same'​);​ 
- 
-% Convert to TSD 
-SWR = tsd(CSC.tvec,​envelope);​ 
- 
-% Produce intervals by thresholding 
-cfg = [];  
-cfg.method = '​zscore';​ cfg.threshold = 3; % cut at 3 SDs above the mean 
-cfg.minlen = 0.02; % exclude intervals shorter than 20 ms 
-cfg.merge_thr = 0; % do not merge nearby events 
-evt = TSDtoIV(cfg,​SWR);​ % evt is the set of candidate events 
- 
-clearvars -except evt ExpKeys 
-</​code>​ 
- 
-Normally there is a lot more that goes on during candidate detection, such as the elimination of events that occur when the rat is moving too quickly, and but we will keep it simple for now. 
- 
-☛ What other steps can you think of that may improve the detection of candidate SWR events? Scan the Methods sections of a few replay papers to see how they do it. 
- 
-=== Estimating place fields ===  
- 
-The basics of estimating tuning curves are covered [[analysis:​course-w16:​week10|here]]. Place cells can fire locally (in-field, when the rat is inside the place field) and non-locally (out-out-field,​ e.g. when the rat is at rest but recalling a previously experienced trajectory). Replay is an example of non-local firing, and it occurs during periods of quiescence. Since non-local firing can affect estimates of place field location, we exclude times when the rat was moving too slowly: 
- 
-<code matlab> 
-% Get his linear speed: 
-linspeed = getLinSpd([],​pos);​ % linear speed 
- 
-% Threshold speed 
-cfg = []; cfg.method = '​raw';​ cfg.operation = '>';​ cfg.threshold = 3.5; % speed limit in cm/sec 
-iv_fast = TSDtoIV(cfg,​linspeed);​ % intervals with speed above thresh 
- 
-% Restrict data so it includes fast intervals only 
-pos_fast = restrict(pos,​iv_fast);​ 
-S_fast = restrict(S,​iv_fast);​ 
-</​code>​ 
- 
-The next step requires us to know more about the layout of the track used for this data set, so here it is: 
- 
-{{ :​analysis:​course-w16:​alyssa_tmaze.png?​nolink&​450 |}} 
- 
-  * Rats performed 15-20 //trials// in one session, such as the one you have loaded. 
-  * Rats experienced one of two possible trajectories during each trial: start-to-left,​ and start-to-right. The end of the left arm had a food reward, and the end of the right arm had a water reward. 
-  * The red line indicates a left trajectory. 
-  * Each trial shared the central arm in common. The intersection of the central arm and left & right arms is the choice point. 
-  * Red and blue circles depict hypothetical locations of some place fields. 
- 
-Our goal is to group the place cells into left and right categories, so we need to look at how cells were spiking when the rat went left or right. However, it’s not quite this simple because the rat often chose one arm far more often than the other, so we need to make sure we’re estimating place fields for the two groups with the same amount of position data. Let’s cheat by using an existing function called ''​GetMatchedTrials'':​ 
- 
-<code matlab> 
-LoadMetadata;​ % contains information about trial times 
- 
-% Get equal numbers of trials 
-[trials.L,​trials.R] = GetMatchedTrials([],​metadata,​ExpKeys);​ 
-</​code>​ 
- 
-Now we need to restrict the data to times when the rat was on the track (i.e. during trial intervals). At this point we separate the data into two different sets corresponding to arm choices or trajectories:​ left and right. 
- 
-<code matlab> 
-% Restrict position and spiking data to trial intervals (left and right groups) 
-pos_trial.L = restrict(pos_fast,​trials.L);​ 
-pos_trial.R = restrict(pos_fast,​trials.R);​ 
-S_trial.L = restrict(S_fast,​trials.L);​ 
-S_trial.R = restrict(S_fast,​trials.R);​ 
-</​code>​ 
- 
-Right now the position data exists in two dimensions (the horizontal plane), but it’s simpler to think of the data in one dimension, existing from the bottom of the Tmaze out to the end of either the left or right arm. To do this, we linearize the position data onto the left and right trajectories. Coordinates defining linear trajectories exist already in metadata, but they are in units of pixels so we need to standardize them to have a bin size in centimeters:​ 
- 
-<code matlab> 
-% Resample coords to have same number of pos units in each bin 
-cfg = []; 
-cfg.binsize = 3; 
-cfg.run_dist = ExpKeys.pathlength;​ 
-coord.L = StandardizeCoord(cfg,​metadata.coord.coordL_cm);​ 
-coord.R = StandardizeCoord(cfg,​metadata.coord.coordR_cm);​ 
- 
-% Note that this step and several previous ones can be done in a more 
-% complicated loop like this, which guarantees that we haven'​t make L/R 
-% copy paste typos: 
- 
-% Define arm categories 
-arms = {'​L','​R'​};​ % L is for the left arm and R is for the right arm 
-for iArm = 1:​length(arms) 
-    coord.(arms{iArm}) = StandardizeCoord(cfg,​metadata.coord.(['​coord',​arms{iArm},'​_cm'​]));​ 
-    % this reads as: 
-    % coord.L = StandardizeCoord(cfg,​metadata,​coord.coordL_cm);​ when iArm = 1 
-    % coord.R = StandardizeCoord(cfg,​metadata,​coord.coordR_cm);​ when iArm = 2 
-end 
- 
-% Linearize position data onto L and R coordinates 
-cfg = []; 
-cfg.Coord = coord.L; 
-linpos.L = LinearizePos(cfg,​pos_trial.L);​ 
-cfg.Coord = coord.R; 
-linpos.R = LinearizePos(cfg,​pos_trial.R);​ 
- 
-% Here is another example of the hard-to-read loop for the linearization step: 
-for iArm = 1:​length(arms) 
-    cfg = []; cfg.Coord = coord.(arms{iArm});​ 
-    linpos.(arms{iArm}) = LinearizePos(cfg,​pos_trial.(arms{iArm}));​ 
-end 
-</​code>​ 
- 
-Finally, we can use our restricted spike trains and restricted linearized position data to get place field estimates along the trajectories:​ 
- 
-<code matlab> 
-% Get place fields ("​PF"​) for L and R trials. 
-cfg = []; 
-cfg.binSize = 1; 
-PF.L = MakeTC(cfg,​S_trial.L,​linpos.L);​ 
-PF.R = MakeTC(cfg,​S_trial.R,​linpos.R);​ 
-</​code>​ 
- 
-☛ Plot the tuning curves for the left and right arms. ''​imagesc()''​ is a good way of doing this. 
- 
-☛ Why do we say place fields are "​estimated"​ instead of, say, obtained or computed? 
- 
-=== Categorizing place cells === 
- 
-==== Challenges ==== 
- 
-★ Why don't we just look at single-cell activation? Under what conditions would the results from that be the same, or different, from pairwise co-occurrence?​ 
- 
-==== Credits ==== 
- 
-This module was developed by [[https://​github.com/​aacarey | Alyssa Carey]]. 
analysis/course-w16/week16.txt · Last modified: 2018/07/07 10:19 (external edit)