Questions on ce_MonoSynConvClick #68
Replies: 2 comments 1 reply
-
Hi Would you like to have a post-decision built-in to handle these "extreme" cases, where connections are determined to be both excitatory and inhibitory? I believe this is mostly an issue with short recordings and with units with few spikes. That said, the algorithm does require manual curation, to remove detected connections that are significant but merely due to synchronization, or noise in the data. The detection method definitely has room for improvement (due to the above-mentioned shortcomings), but what would the post-decision be in your opinion? |
Beta Was this translation helpful? Give feedback.
-
I don't know if a correlated firing rate is a good measure, but I know of others that use the waveform width to filter the detected connections (in the hippocampus, the excitatory connections are from the "wide waveform" pyramidal cells to the "narrow waveform" interneurons). |
Beta Was this translation helpful? Give feedback.
-
Hi, I was trying to use
ce_MonoSynConvClick
to calculate putative connectivity between units. While doing that I found the following problem: say I have unit A and B, the function would sometimes return A->B as both excitatory and inhibitory connectivity. I looked at the code, and it turns out from line 217 to 231 that it was looking for excitatory connections using the maximum value of the cross-correlogram in the range indicated bypostbins
. If that maximum value satisfies 2 conditions then it is determined to be an excitatory connection.Similarly from line 269 to 282, we can see it was looking for inhibitory connections merely by looking at the minimum value of cross-correlogram in
postbins
.With that said, if a CCH has really high fluctuation in range
postbins
(it seems like 8 bins by default if I understood correctly), then the same pair of units A->B (A as the source) can be determined as both excitatory and inhibitory, which is undesirable. What are your opinions/suggestions here?Thank you so much!
Beta Was this translation helpful? Give feedback.
All reactions