While the exact cause of autism is unknown, its development in children has been linked to various genetic and environmental factors—including zinc deficiency.

It is still not clear whether this deficiency contributes to autism, but scientists have defined a possible mechanism for how this could work, according to a paper published in Frontiers in Molecular Neuroscience.

For their study, the researchers demonstrated how zinc shapes the connections, or synapses, between brain cells (neurons) that form during early development via a complex molecular machinery controlled by autism-linked genes.

"Autism is associated with specific variants of genes involved in the formation, maturation 成熟 and stabilization of synapses during early development," Sally Kim, lead author of the study from Stanford University School of Medicine, said in a statement.

"Our findings link zinc levels in neurons—via interactions with the proteins encoded by these genes—to the development of autism,” Kim said.

The team found that when a brain signal was transferred via a synapse, zinc entered the target neuron where it could bind two of these proteins, known as SHANK2 and SHANK3. Those proteins cause changes in the composition and function of adjacent signal receptors, called AMPARs, on the neuron’s surface at the synapse.

The finding that zinc shapes the properties of developing synapses via SHANK proteins suggests that a lack of the mineral during early development could potentially contribute to autism by impairing the function of synapses, which enable brain cells to communicate with one another.

"Understanding the interaction between zinc and SHANK proteins could therefore lead to diagnostic, treatment and prevention strategies for autism,” suggested John Huguenard, co-senior author of the study, of Stanford University School of Medicine.

It’s important to note, however, that at present it isn't possible to make any concrete conclusions or begin recommending that children take zinc supplements.

"Currently there are no controlled studies of autism risk with zinc supplementation in pregnant women or babies, so the jury is still out,” Craig Garner, co-author of the study from the German Centre for Neurodegenerative Diseases, said. “But experimental work in autism models also published in this Frontiers Research Topic holds promise.”

Taking too much zinc can reduce the amount of copper the body absorbs吸收, which can result in anemia and weakening of bones. Furthermore, zinc deficiency does not necessarily imply a dietary deficiency, and could be caused by problems with absorption in the gut, for example.

"Nevertheless, our findings offer a novel mechanism for understanding how zinc deficiency—or disrupted handling of zinc in neurons—might contribute to autism," Garner said.

Autism is a lifelong developmental disability that affects how people perceive the world and interact with others. The autism spectrum contains a range of similar disorders, such as Asperger’s syndrome.

L170 Autism Linked to Zinc Deficiency in Childhood的更多相关文章

  1. [LeetCode] Linked List Random Node 链表随机节点

    Given a singly linked list, return a random node's value from the linked list. Each node must have t ...

  2. [LeetCode] Plus One Linked List 链表加一运算

    Given a non-negative number represented as a singly linked list of digits, plus one to the number. T ...

  3. [LeetCode] Odd Even Linked List 奇偶链表

    Given a singly linked list, group all odd nodes together followed by the even nodes. Please note her ...

  4. [LeetCode] Delete Node in a Linked List 删除链表的节点

    Write a function to delete a node (except the tail) in a singly linked list, given only access to th ...

  5. [LeetCode] Palindrome Linked List 回文链表

    Given a singly linked list, determine if it is a palindrome. Follow up: Could you do it in O(n) time ...

  6. [LeetCode] Reverse Linked List 倒置链表

    Reverse a singly linked list. click to show more hints. Hint: A linked list can be reversed either i ...

  7. [LeetCode] Remove Linked List Elements 移除链表元素

    Remove all elements from a linked list of integers that have value val. Example Given: 1 --> 2 -- ...

  8. [LeetCode] Intersection of Two Linked Lists 求两个链表的交点

    Write a program to find the node at which the intersection of two singly linked lists begins. For ex ...

  9. [LeetCode] Linked List Cycle II 单链表中的环之二

    Given a linked list, return the node where the cycle begins. If there is no cycle, return null. Foll ...

随机推荐

  1. 多线程中sleep和wait的区别,以及多线程的实现方式及原因,定时器--Timer

    1.  Java中sleep和wait的区别 ① 这两个方法来自不同的类分别是,sleep来自Thread类,和wait来自Object类. sleep是Thread的静态类方法,谁调用的谁去睡觉,即 ...

  2. [入坑系列] Mybatis 中$与#的区别

    1.理解 1 #是将传入的值当做字符串的形式,eg:select id,name,age from student where id =#{id},当前端把id值1,传入到后台的时候,就相当于 sel ...

  3. spring手动配置

    本文总结自:https://www.cnblogs.com/V1haoge/p/7183408.html SpringBoot中免除了大部分配置,但是对于一些特定的情况,还是需要我们进行手动配置的. ...

  4. 快用Visual Studio(五)- 语言特性

    HTML 自带Emment $ SHIFT + OPTION + F:格式化代码 其他语言特性提示 CSS & LESS hover属性,提示样式对象标签 $ CMD + SHIFT + O: ...

  5. Quick Launcher FAQ

    Q: Which category can be previewed and selected in Finder? A: All the categories can be selected in ...

  6. .NET Framework 系统要求

    .NET Framework 3.5对操作系统的要求 .NET Framework 4 对操作系统的要求 .NET Framework 4.5对操作系统的要求

  7. Extjs 分页多选的实现

    Extjs 版本 6.X 单页面的多选,没有任何问题. 直接使用 Grid的配置项进行绑定即可获取: xtype: 'grid', bind: { selection: '{checkedRecord ...

  8. 综合一句话Shell破解

    之前我在论坛发过了一句话的破解工具. 所以决定还是在基础上在改改,符合某些人的利用. 上一版只支持HTTPS/ASPX,这次改进后,也算是最后一版. 支持:PHP/HTTP/HTTPSASPX/HTT ...

  9. location的部分属性

    http://www.w3school.com.cn/jsref/dom_obj_location.asp location.host 可以设置或返回主机名和当前url的端口    www.w3sch ...

  10. 理解多线程管理类 CWorkQueue

    有些人会觉得多线程无非是,有多少任务就启动多少线程,CreadThread,执行完了自己结束就释放资源了,其实不然.多线程是需要管理的,线程的启动.执行.等待和结束都需要管理,线程间如何通信,如何共享 ...