非編碼核糖核酸

Multi tool use
非編碼核糖核酸(英语:non-coding RNA),縮寫ncRNA,是指各種不轉譯成蛋白質的RNA分子。過去也稱此類RNA為小核糖核酸(sRNA)。不過有些ncRNA分子其實相當大。其他較少使用的同義詞還有非信使核糖核酸(nmRNA)、小非信使核糖核酸(snmRNA)或功能性核糖核酸(fRNA)等。
DNA序列中專門轉錄成非編碼RNA的部分稱為RNA基因或是非編碼RNA基因。非編碼RNA基因用來生產tRNA(轉移RNA)與rRNA(核糖體RNA),以及一些小RNA,如snoRNAs、microRNAs、siRNAs與piRNAs;較大的則有Xist、Evf、Air、CTN與PINK等。
基因組中可生產非編碼RNA的DNA比例目前仍未明瞭,最近的轉錄組及微陣列研究顯示,在老鼠基因組中,可能有超過3萬個長ncRNA。mRNA(信使RNA)末端也含有一些非編碼區域(non-coding regions;UTRs),雖然這些部分並非蛋白質編碼,但mRNA並不歸類於非編碼RNA。
外部連結
- The Rfam Database
- Non-coding RNA database
EumiR prediction of microRNA precursors based on Support Vector Machine.
HairpinFetcher Prediction and analysis of hairpin forming potential in nucleic acids.
RNA@IGIB group at the Institute of Genomics and Integrative Biology working on functional noncoding RNA biology.
Wikiomics/RNA Provides links to a variety of ncRNA analysis tools for structure prediction, sequence alignment and homology search.
miRacle Provides target search for microRNAs and other small non-coding RNAs based on an algorithm which incorporates RNA secondary structure.
核酸种类
|
|
组分 |
|
|
核糖核酸 (编码与非编码) |
转译: |
|
|
调控: |
|
|
其他: |
- gRNA
- 核酶
- shRNA
- stRNA
- ta-siRNA
|
|
|
脱氧核糖核酸 |
cDNA · cpDNA · gDNA · msDNA · mtDNA
|
|
核酸类似物 |
|
|
载体 |
- 噬菌粒
- 质粒
- λ噬菌体
- 黏质体
- F黏粒
人工染色体
|
|
生物化學物質種類索引
|
|
糖类 |
|
|
酯質 |
- 类花生酸类
脂肪酸
- 甘油酯
- 磷脂
- 鞘脂類
- 胆固醇与甾体中间产物
|
|
核酸 |
|
|
蛋白質 |
|
|
其他 |
|
|
|
LWWSqRj,LAxOxsJ0CIud lkEroFp vhlpC7U4mbgLXPM dwnZBIz
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
...