旁系群

Multi tool use
旁系群在支序分类学是指一个演化支上某个单系群最亲近的分类群,又称为姐妹群[1]。如下图所示:
单系群A是单系群B的旁系群,同时B也是A的旁系群,两者从一个最近共同祖先演化而来,而关系较远的C就是它们的外类群。A和B也可以组成一个单系群单元D,此时这个单元D就是C的旁系群,反之亦然……,以此类推,用以概括更远的旁系群。在支序分类学的定义上,A、B、C可以是生物样本、物种或分类单元。在描述物种时,有时会以“姐妹种”(英语:sister species)来称呼。
在种系发生学的亲缘关系研究中使用“旁系群”这个概念时,一般只考虑研究中所列举的样本,例如:在现存物种当中,鳄鱼是鸟类最亲近的旁系群[2][3],但这仅仅是对现生种而言;如果将已灭绝的种类算进来,鸟类作为恐龙的直系后代,鸟类和鳄鱼之间还隔着许许多多的已灭绝的旁系近亲[4]。所以,需留意“旁系群”这个概念只是一个相对的概念,仅仅用来描述研究中所列出的类群、物种或样本之间相对的亲疏远近关系。[5]
参考文献
^ Eernisse, D.J. Introduction to Phylogeny: What is a Sister Taxon?. Biology 404 - Evolution. Department of Biological Science, California State University, Fullerton. [4 January 2012].
^ Padian, Kevin; Lindberg, David R., Polly, Paul David. Cladistics and the Fossil Record: The Uses of History. Annual Review of Earth and Planetary Sciences. 1 May 1994, 22 (1): 63–89. doi:10.1146/annurev.ea.22.050194.000431.
^ Kemp, T.S. Haemothermia or Archosauria? The interrelationships of mammals, birds and crocodiles. Zoological Journal of the Linnean Society. 1 January 1988 2008, 92 (1): 67–104. doi:10.1111/j.1096-3642.1988.tb01527.x.
^ Hughes, J.M. Ancient bird-crocdilian ancestor uncovered. AVES VITAE - The lives of birds. [4 January 2012]. (原始内容存档于2012年4月26日).
^ Podani, J. Taxonomy in Evolutionary Perspective - An essay on the relationships between taxonomy and evolutionary theory. Synbiologia Hungarica. 2010, 5: 1–42.
2RgpA,E9HNwfpy,C x,h9H
Popular posts from this blog
提示 :本条目的主题不是 香港中文大學(深圳) 。 body.skin-minerva .mw-parser-output table.infobox caption{text-align:center} 香港中文大學 The Chinese University of Hong Kong 校训 博文約禮 [1] [2] 创建时间 1963年10月17日 学校类型 法定(公立)、研究型 監督 主權移交前:英屬香港總督 主權移交後:香港特別行政區行政長官 校董會主席 梁乃鵬博士 校長 段崇智教授 副校长 華雲生教授(常務副校長) 霍泰輝教授、吳基培教授 張妙清教授、潘偉賢教授 陳偉儀教授、吳樹培先生 教师人數 1,619 [3] 学生人數 25,489 [3] 本科生人數 20,147 [3] 研究生人數 5,342 [3] 校址 香港新界沙田馬料水沙田市地段437號(大埔公路十一至十二咪左右(正門及崇基門) 22°25′10″N 114°12′19″E / 22.41946°N 114.205358°E / 22.41946; 114.205358 坐标: 22°25′10″N 114°12′19″E / 22.41946°N 114.205358°E / 22.41946; 114.205358 科學園路與澤祥街交界(東校門) 澤祥街18號(沙田凱悅酒店及工商管理學院)) 校區 新市鎮 总面积 134.4公頃(1,344,000平方米) [2] 代表色 紫與金 [1] 吉祥物 鳳凰 [1] 隶属 英聯邦大學協會 國際商管學院促進協會(AACSB) 東南亞高等教育協會 ( 英语 : ASAIHL ) 國際大學協會 亚太高校书院联盟 八大公立大學聯盟(譯自:HK8)[3] 网站 http://www.cuhk.edu.hk/ 香港中文大學 ( 英语: The Chinese University of Hong Kong ,縮寫为 CUHK ),簡稱 中文大學 、 中大...
10
1
I have a function that searches a vector of iterators and returns the iterator if its names matches a string passed as an argument. koalaGraph::PVertex lookUpByName(std::string Name, std::vector<koalaGraph::PVertex>& Vertices) { for (size_t i = 0; i < Vertices.size(); i++) { if(Vertices[i]->info.name == Name) return Vertices[i]; } } My question is how can I implement this as a lambda, to use it in connection with std::find_if ? I'm trying this: std::vector<koalaGraph::PVertex> V; std::string Name; std::find_if(V.begin(), V.end(), [&Name]() {return Name == V->info.name;}) But it says that V an enclosing-function local variable cannot be referenced in a lambda body unless it is in the capture list.
...
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
4
1
I am installing hackintosh in virtualbox on ubuntu, but when I try to start, I get above error. Here are some more details, Result Code: NS_ERROR_FAILURE (0x80004005) Component: ConsoleWrap Interface: IConsole {872da645-4a9b-1727-bee2-5585105b9eed} How can I solve this issue?
16.04 virtualbox
share | improve this question
asked Oct 22 '17 at 15:10
luv.preet luv.preet
1,502 4 13 29
...