Early-morning births are genetically programmed

THE notion that nothing good happens after midnight does not seem to apply to times of birth. Around the world the peak hours for vaginal births that have not been induced by drugs fall between 1am and 7am; the numbers then dwindle throughout the rest of the day. This has led many scientists to believe that giving birth during the early morning offers some sort of evolutionary advantage, perhaps gained long ago when hunter-gatherer mothers and their infants would benefit from having their group reunited during the small hours to help with care and to defend them against any predators.
The problem with this theory is that almost all the information on the timing of human births comes from modern, urban settings, such as clinics and hospitals, which could produce artificial conditions that skew the variation in timings. Not so, it turns out. As Carlye Chaney of Yale University shows in the American Journal of Physical Anthropology, early-morning births are common to communities with both modern and traditional lifestyles.
Get our daily newsletter
The mothers that Ms Chaney and her colleagues chose to study live in Formosa, a rural province in Argentina. They were divided into two groups that were considered to be both culturally and genetically distinct. One group consisted of 1,278 women from the Criollo population, a people of mixed Spanish and indigenous heritage who live relatively modern lives and typically engage in small-scale farming and cattle-ranching. The second group was made up of 1,110 women who belonged to the Wichí and Toba/Qom populations, two of the traditionally nomadic hunter-gatherer peoples who also reside in the Formosa region. Because of Argentine health reforms in the 1980s, which encouraged—and sometimes forced—childbirth to take place in a formal medical setting, all the women in the study gave birth in the delivery room of a rural hospital that recorded the events. Ms Chaney included only full-term births and ignored all Caesarean sections, miscarriages, drug-induced and pre-term births.
If a modern way of life plays a part in favouring early-morning births, Ms Chaney speculated that she would see such timings dominate in the results for the Criollo women, but feature less prominently among the results for the Wichí and Toba/Qom. Not so. The data and additional analysis make it clear that there is no statistical difference in the average birth time found between the two groups. Both showed a surge in births between 2am and 3am, and a big trough around 5pm. More specifically, the average time of birth for the Criollo was 6.34am and that for the Wichí and Toba/Qom was 4.18am.
Ms Chaney believes that the mechanism driving the tendency for expectant mothers to give birth during the early morning is likely to be melatonin, a hormone which is known to increase at the onset of labour and is predominantly produced by the body between midnight and 5am. That mechanism may well have come about, Ms Chaney suspects, because it was advantageous to go into labour when most help was to hand. Today that means more work for the night shift.

L94的更多相关文章

  1. C# if中连续几个条件判断

    C# if中连续几个条件判断 1.if (条件表达式1 && 条件表达式2) 当条件表达式1为true时 using System; using System.Collections. ...

  2. Deconvolution Using Theano

    Transposed Convolution, 也叫Fractional Strided Convolution, 或者流行的(错误)称谓: 反卷积, Deconvolution. 定义请参考tuto ...

  3. navigation controller

    一.程序框架 1.程序结构

  4. Node.js与Sails~项目结构与Mvc实现

    回到目录 Sails是一个Node.js的中间件架构,帮助我们很方便的构建WEB应用程序,网址:http://www.sailsjs.org/,它主要是在Express框架的基础上发展起来的,扩展了新 ...

  5. c++ ip地址相关

    #include <stdio.h> #include <string.h> #include <arpa/inet.h> #include <sys/typ ...

  6. python 【第三篇】:函数及参数

    函数背景 在学习函数之前,一直遵循:面向过程编程: 根据业务逻辑从上到下实现功能,其往往用一长段代码来实现指定功能,开发过程中最常见的操作就是粘贴复制,也就是将之前实现的代码块复制到现需功能处,如下: ...

  7. list,set,map总结

    学习了集合,脑子里list,set,map之间的关系有混乱,在这里整理一下.有兴趣的朋友可以看下. 先看下 list,set,map各自的特点

  8. 【luogu P4005 清华集训2017】小Y和地铁

    题目描述 小 Y 是一个爱好旅行的 OIer.一天,她来到了一个新的城市.由于不熟悉那里的交通系统,她选择了坐地铁. 她发现每条地铁线路可以看成平面上的一条曲线,不同线路的交点处一定会设有 换乘站 . ...

  9. Ubuntu环境下配置darknet

    本教程基于Linux物理机进行相关配置,要求物理机中包含N卡且Capbility>=3.0,小于3.0(Fermi架构)只允许配置cuda,不能配置使用Cudnn: 本教程分为: 1.安装NVI ...

随机推荐

  1. Angular 一些问题(跨域,后台接收不到参数)

    1,跨域:跟前端没多大关系的,后台没设置头而已.这时候如果你们后端太菜你可以叫他加上每种语言 都不同,但是里面的呢荣是一样的.具体跨域可以跳转这里http://www.cnblogs.com/dojo ...

  2. c# mvc 路由规则学习片段

    1.初步接触mvc 路由 routes.MapRoute(               "CM",               "CM/{controller}/{act ...

  3. mysql日期格式转化

    select DATE_FORMAT( '20170701', '%Y-%m-%d'); 先挖坑

  4. coreos 之flannel

    提要: coreos 中 flannel 工具是coreos 网络划分工具.通过flannel 划分子网并向etcd 注册网络信息.可以做到宿主机集群中容器间网络通信. 1. 启动etcd2 服务: ...

  5. 局部描述符表LDT的作用+定义+初始化+跳转相关

    [0]写在前面 0.1)本代码的作用: 旨在说明局部描述符表的作用,及其相关定义,初始化和跳转等内容: 0.2)文末的个人总结是干货,前面代码仅供参考的,且source code from orang ...

  6. 错误Log日志的收集

    1.在Application里面初始化 AppCrashHandler.getInstance(this); 2.创建一个类 package com.lvshandian.partylive.util ...

  7. Java 学习 day04

    17-数组(概述-内存结构) 概念:同一种类型数据的集合,其实数组就是一个容器. 可以自动给数组中的元素从0开始编号,方便操作这些元素. int[] x = new int[3]; 01-数组(静态初 ...

  8. 【BZOJ1853/2393】[Scoi2010]幸运数字/Cirno的完美算数教室 DFS+容斥

    [BZOJ1853][Scoi2010]幸运数字 Description 在中国,很多人都把6和8视为是幸运数字!lxhgww也这样认为,于是他定义自己的“幸运号码”是十进制表示中只包含数字6和8的那 ...

  9. java设计模式之迭代器模式

    一.迭代器模式简介 迭代器模式提供一种方法顺序访问一个聚合对象中的各个元素,而又不暴露其内部的表示. 迭代器模式让我们能游走于聚合内的每一个元素,而又不暴露内部的表示.把游走的任务放在迭代器上,而不是 ...

  10. CDH使用Solr实现HBase二级索引

      一.为什么要使用Solr做二级索引二.实时查询方案三.部署流程3.1 安装HBase.Solr3.2 增加HBase复制功能3.3创建相应的 SolrCloud 集合3.4 创建 Lily HBa ...