seedRegions(microRNA)
seedRegions()所属R语言包:microRNA
A function to retrieve the seed regions from microRNA sequences
一个函数来检索microRNA序列的种子区域
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The seed region of a microRNA consists of a set of nucleotides at the 5' end of the microRNA, typically bases 2 through 7, although some times 8 is used.
种子区域的microRNA包括一套核苷酸的小分子RNA的5端,通常是根据2到7,虽然用了一些时间8。
用法----------Usage----------
seedRegions(x, start = 2, stop = 7)
参数----------Arguments----------
参数:x
A vector of microRNA sequences.
microRNA序列向量。
参数:start
The start locations, can be a vector.
开始的位置,可以是一个向量。
参数:stop
The stop locations, can be a vector.
该站的位置,可以是一个向量。
Details
详情----------Details----------
We use substr to extract these sequences.
我们使用substr提取这些序列。
值----------Value----------
A vector of the same length as x with the substrings.
长度相同的向量x中的子。
作者(S)----------Author(s)----------
R. Gentleman
参见----------See Also----------
substr
substr
举例----------Examples----------
data(hsSeqs)
seedRegions(hsSeqs[1:5])
seedRegions(hsSeqs[1:3], start=c(2,1,2), stop=c(8,7,9))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|