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. 关于URL和http协议,http消息格式

    转自:http://crystal2012.iteye.com/blog/1447845 在WWW(全球资讯网)中想要连结到某个网页,便需要给浏览器一个位址,而URL在此的功能就是告知浏览器某个资源在 ...

  2. LINUX SHELL 笔记 01: 脚本

    root@iZwz:~/labs# vim myfirst root@iZwz:~/labs# cat myfirst #!/bin/bash clear echo "this is my ...

  3. 20145307《信息安全系统设计基础》第五周学习总结PT2

    20145307<信息安全系统设计基础>第五周学习总结PT2: 教材学习内容总结 之前有第一部分学习总结: http://www.cnblogs.com/Jclemo/p/5962219. ...

  4. Job流程:Mapper类分析

    此文紧接Job流程:决定map个数的因素,Map任务被提交到Yarn后,被ApplicationMaster启动,任务的形式是YarnChild进程,在其中会执行MapTask的run()方法.无论是 ...

  5. 记数排序 & 桶排序 & 基数排序

    为什么要写这样滴一篇博客捏...因为一个新初一问了一道水题,结果就莫名其妙引起了战斗. 然后突然发现之前理解的桶排序并不是真正的桶排序,所以写一篇来区别下这三个十分相似的排序辣. 老年菜兔的觉醒!!! ...

  6. Docker Mysql主主同步配置搭建Demo

    主主同步配置和主从配置很相似,仅需稍做修改就可以了,对主从配置有疑问可以查看 上一篇文章. 进行Docker操作前,先建立目录,我的路径是d:/docker/mysql,目录结构如下: --mysql ...

  7. RabbitMQ入门(1)——Hello World

    这系列是官网的翻译和一些博客的参考,仅供自己复习使用. 介绍 官网定义: RabbitMQ is the most widely deployed open source message broker ...

  8. Quartz(自动任务)中的触发器Trigger

    1.Quartz中的触发器TriggerJob 包含了要执行任务的逻辑,但是 Job 对何时该执行却一无所知.这个事情留给了 Trigger.Quartz Trigger 继承了抽象的 org.qua ...

  9. virtual dom & mvvm

    虚拟dom 用js对象来表示dom树的结构,然后用这个对象来构建一个真正的dom树插入文档中: 当状态有变时,重新构造一个新的对象树,然后比较新的和旧的树,记录两个数的差异: 把差异部分应用到真正的d ...

  10. 《高级Web应用程序设计》疑难杂症(201709011)

    (提供答案的同学,可获得加分小星星,每题1分,总分哦.) 1.DisplayColumn特性加在模型类上,它的用途是什么?