RNA2DNA(microRNA)
RNA2DNA()所属R语言包:microRNA
A Function to translate RNA sequences into DNA sequences.
一个功能转化为RNA序列的DNA序列。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
RNA and DNA differ in that RNA uses uracil (U) and DNA uses thiamine (T), this function translates an RNA sequence into a DNA sequence by translating the characters.
RNA和DNA,RNA的不同使用尿嘧啶(U)和DNA使用硫胺(T)的,这个函数转换成一个RNA序列的DNA序列翻译的字符。
用法----------Usage----------
RNA2DNA(x)
参数----------Arguments----------
参数:x
A valid RNA sequence.
一个有效的RNA序列。
Details
详情----------Details----------
No checking for validity of sequence is made, and the input sequence is translated to upper case.
没有序列的有效性检查,并输入序列被转换为大写。
值----------Value----------
A character vector, of the same length as x where all characters are in upper case, and any instance of U in x is replaced by a T.
字符向量的长度相同,x所有字符都是大写,任何实例U在xT取代。
作者(S)----------Author(s)----------
R. Gentleman
参见----------See Also----------
chartr
chartr
举例----------Examples----------
input = c("AUCG", "uuac")
RNA2DNA(input)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|