new("CNSeg",..)
.
A constructor CNSeg(segList)
can also be used to instantiate
CNSeg objectsegList
:"data.frame"
is
the "output" element of the object return by the segment
function of DNACopychromosome
:"character"
is
the name of the column in segList that contains the chromosome name a given segment belong toend
:"character"
is
the name of the column in segList that contains the ending locatino of a given segmentstart
:"character"
is
the name of the column in segList that contains the starting location of a given segmentsegMean
:"character"
is
the name of the column in segList that contains the mean log ratio of a given segmentid
:"character"
is
the name of the column in segList that contains the id of a given segmentsignature(object = "CNSeg")
: get the
Reduced Segment data matrixsignature(object = "CNSeg")
: get the
value for slot "segList" of a CNSeg objectsignature(object = "CNSeg")
: set the
value for slot "segList" of a CNSeg objectsignature(object = "CNSeg")
: print a CNSeg
objectRS
data("sampleData")
# take a subset of the data for speed
seg <- CNSeg(sampleData[which(is.element(sampleData[, "ID"],
sample(unique(sampleData[, "ID"]), 10))), ])
rsBypair <- getRS(seg, by = "pair", imput = FALSE, XY = FALSE, what = "mean")
rsBypair
Run the code above in your browser using DataLab