c(genomeIntervals)
c()所属R语言包:genomeIntervals
Combine genome intervals objects
结合基因组间隔对象
译者:生物统计家园网 机器人LoveR
描述----------Description----------
S3 methods for combining several genome intervals into a single one.
S3的几个基因间隔合并成一个单一的一个方法。
用法----------Usage----------
## S3 method for class 'Genome_intervals'
c(...)
## S3 method for class 'Genome_intervals_stranded'
c(...)
参数----------Arguments----------
参数:...
Genome_intervals or Genome_intervals_stranded objects.
Genome_intervals或Genome_intervals_stranded对象。
Details
详情----------Details----------
If the arguments have mixed classes ( both Genome_intervals or Genome_intervals_stranded), then they are coerced to Genome_intervals before combination. Otherwise, the common class is used.
如果参数有混合班(两个Genome_intervals或Genome_intervals_stranded),然后他们被强迫Genome_intervals合并前。否则,普通类。
值----------Value----------
A single Genome_intervals or Genome_intervals_stranded object. Input objects are combined in their order of appearance in the the argument list.
单一Genome_intervals或Genome_intervals_stranded对象。输入对象相结合,在它们出现在参数列表中的顺序。
If any input argument is not a Genome_intervals, list(...) is returned instead.
如果没有任何输入参数是一个Genome_intervals,list(...)返回。
注意----------Note----------
These methods will be converted to S4 once the necessary dispatch on ... is supported.
这些方法将被转换到S4一次上...必要派遣支持。
举例----------Examples----------
# load toy examples[装载玩具的例子]
data("gen_ints")
# combine i and j returns a Genome_intervals_stranded object[结合i和j返回Genome_intervals_stranded对象]
c( i, j )
# combine a not-stranded and a stranded returns a not-stranded object[结合不滞留和搁浅的回报不滞留的对象]
c( as(i, "Genome_intervals"), j )
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|