core_annotated(genomeIntervals)
core_annotated()所属R语言包:genomeIntervals
Genome intervals with minimal annotation
用最少的注释的基因组区间
译者:生物统计家园网 机器人LoveR
描述----------Description----------
returns a copy of the input (stranded) genome intervals object with annotations restricted to the minimally required ones.
返回输入(搁浅)基因组的间隔时间限制到最低限度要求的注解对象的副本。
用法----------Usage----------
core_annotated(x)
参数----------Arguments----------
参数:x
A Genome_intervals or Genome_intervals_stranded object.
一个Genome_intervals或Genome_intervals_stranded对象。
值----------Value----------
A copy of x with the annotation slot restricted to seq_name, inter_base and strand (the latter only if x is a Genome_intervals_stranded object).
x与annotation插槽限制seq_name,inter_base和strand(后者只有x是<X的副本>对象)。
举例----------Examples----------
# load toy examples[装载玩具的例子]
data("gen_ints")
# add some non-core annotations to i[我添加一些非核心的注解]
annotation(i)$comment = "some non-core annotation"
# i with all annotations[我的所有注释]
i
# core annotations only[只有核心的注解]
core_annotated(i)
## Not run: [#无法运行:]
# with different annotation columns, i and j cannot be combined[与不同的注解列,i和j不能结合]
c( i, j )
## End(Not run)[#结束(不运行)]
# core annotated versions can[核心注释版本]
c( core_annotated(i), core_annotated(j) )
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|