近日,南方科技大学助理教授陈小菁团队和bet36体育投注:深圳先进技术研究院研究员王成团队合作,在《自然—通讯》发表最新研究,揭示了海马空间认知功能的发育机制。
空间认知是动物个体得以生存的重要能力,它帮助动物完成导航、记忆以及适应环境等关键任务。空间认知能力既依赖于先天的神经基础,也受到后天学习经验的深刻影响。
此前,科学家们在海马中发现了可以编码空间位置的细胞,这些细胞类型为空间认知提供了神经基础。然而,这些细胞在动物出生后的发育早期的功能,其成熟变化的过程,以及发育早期神经网络的功能和变化过程仍有许多未解之谜。
通过单光子钙成像技术,团队对自由移动的幼年大鼠海马CA1脑区进行了从第17天至第28天的长期记录。与先前研究结果一致,团队发现在发育早期就出现了编码空间信息的细胞,被称为早期位置细胞。
团队发现,早期位置细胞在多个环境中都展现出较高的空间编码能力,其空间编码能力的高排序在跨天测试中保持一致。而与发育晚期和成年动物相比,早期位置细胞的位置场在跨天的稳定性上相对较弱。这一发现暗示早期位置细胞可能构成了初步空间认知的重要基础,为新生个体提供了先天的导航能力。
随着更多细胞发育成为位置细胞,称为晚期位置细胞。晚期位置细胞的空间编码能力在发育早期迅速增强,而早期位置细胞在发育早期的空间编码能力并没有显著提高,提示晚期位置细胞可能为个体在后天学习的过程中提供了环境适应的能力。
团队还观察到,随着发育,海马细胞集群的同步性增加,早期位置细胞更倾向于形成高度同步的细胞集群,表明海马空间认知能力的提高可能是细胞个体编码能力与细胞群体网络共同发育的结果。
该研究揭示了早期位置细胞和晚期位置细胞的动态发育过程,为认识空间认知能力的发育提供了新的视角,为海马功能发育过程中的“先天-后天”相互作用提供了关键证据。(来源:bet36体育在线:科学报 刁雯蕙)
相关论文信息:https://doi.org/10.1038/s41467-024-54320-z
版权声明:本文转载仅仅是出于传播信息的需要,并不意味着代表本网站观点或证实其内容的真实性;如其他媒体、网站或个人从本网站转载使用,须保留本网站注明的“来源”,并自负版权等法律责任;作者如果不希望被转载或者联系转载稿费等事宜,请与我们接洽。
element block and removes
// previous instances of the identical script.
var found = false;
for (var child = 0; child < head.childNodes.length; child++) {
var control = head.childNodes[child];
if (typeof(control.tagName) == "string") {
if (control.tagName.toUpperCase() == "SCRIPT") {
if (script.src.length > 0) {
if (script.src == control.src) {
found = true;
break;
}
} else if (script.innerHTML.length > 0) {
if (script.innerHTML == control.innerHTML) {
found = true;
break;
}
}
}
}
}
if (found) {
head.removeChild(control);
}
var scriptAddedToHead = false;
if (typeof script.readyState != "undefined" && !window.opera) {
script.onreadystatechange = function() {
if (script.readyState != "complete" && script.readyState != "loaded") {
return;
} else {
Anthem_LoadPageScript(result, index + 1);
}
}
} else {
if (isExternalScript) // if it's an external script, only execute the next script when the previous one is loaded.
{
script.onload = function() {
Anthem_LoadPageScript(result, index + 1);
}
}
else // I didn't find a way for script blocks to fire some onload event. So in this case directly call the Anthem_LoadPageScript for the next script.
{
document.getElementsByTagName('head')[0].appendChild(script);
scriptAddedToHead = true;
Anthem_LoadPageScript(result, index + 1);
}
}
// Now we append the new script and move on to the next script.
// Note that this is a recursive function. It stops when the
// index grows larger than the number of scripts.
if (!scriptAddedToHead)
document.getElementsByTagName('head')[0].appendChild(script);
}
} catch (e) {
Anthem_DebugError("Error adding page script to head. " + e.name + ": " + e.message);
}
}
}
function Anthem_EvalClientSideScript(result) {
if (result.script) {
for (var i = 0; i < result.script.length; ++i) {
try {
eval(result.script[i]);
} catch (e) {
alert("Error evaluating client-side script!\n\nScript: " + result.script[i] + "\n\nException: " + e);
}
}
}
}
//Fix for bug #1429412, "Reponse callback returns previous response after file push".
//see http://sourceforge.net/tracker/index.php?func=detail&aid=1429412&group_id=151897&atid=782464
function Anthem_Clear__EVENTTARGET() {
var form = Anthem_GetForm();
Anthem_SetHiddenInputValue(form, "__EVENTTARGET", "");
}
function Anthem_InvokePageMethod(methodName, args, clientCallBack, clientCallBackArg) {
Anthem_Clear__EVENTTARGET(); // fix for bug #1429412
return Anthem_CallBack(null, "Page", null, methodName, args, clientCallBack, clientCallBackArg, true, true);
}
function Anthem_InvokeMasterPageMethod(methodName, args, clientCallBack, clientCallBackArg) {
Anthem_Clear__EVENTTARGET(); // fix for bug #1429412
return Anthem_CallBack(null, "MasterPage", null, methodName, args, clientCallBack, clientCallBackArg, true, true);
}
function Anthem_InvokeControlMethod(i