makeSegmentation(GenomeGraphs)
makeSegmentation()所属R语言包:GenomeGraphs
Create objects of class segmentation
创建类分割对象
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Construct objects of class segmentation
建设类分割的对象
用法----------Usage----------
makeSegmentation(start, end, value, dp = NULL)
参数----------Arguments----------
参数:start
Either a list or a vector. If it is a list then it is a list of vectors of start position (this is the way it is represented in the segmentation class) If it is a vector it is a vector of start positions.
无论是列表或向量。如果它是一个列表,那么它是一个向量的起始位置(这是它在分割类)的列表,如果它是一个向量,它是一个向量的起始位置。
参数:end
Same as start, but the corresponding end positions.
作为开端,但相应的结束位置相同。
参数:value
The y value of the segmentation, ie. segments(start[i], value[i], end[i], value[i])
分割的y值,即。分部(启动[I]值[我],结束[I],价值[I])
参数:dp
The Display parameters.
显示参数。
值----------Value----------
An object of class Segmentation
分割类的对象
举例----------Examples----------
data("exampleData", package="GenomeGraphs")
seg <- makeSegmentation(segStart[[1]], segEnd[[1]], segments[[1]],
dp = DisplayPars(color = "black", lwd=2,lty = "solid"))
cop <- makeGenericArray(intensity = cn, probeStart = probestart,
trackOverlay = seg, dp = DisplayPars(size=3, color = "seagreen", type="dot"))
gdPlot(cop)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|