Description Objects from the Class Slots Extends Methods Author(s) See Also Examples
A class for storing count data obtained from ChIP-seq experiments by
counting the number of reads lying within regions. The class extends
RangedSummarizedExperiment.
Objects can be created by calls of the form
ChIPseqSet(chipVals=countDataMatrix,
rowRanges=genomicRegions,
colData=DataFrame(row.names=colnames(countDataMatrix)),
...).
However, one will most likely create a ChIPseqSet object by
calling summarizeReads.
metadata:An optional list of arbitrary
content describing the overall experiment.
rowRanges:Object of class "GRanges" or "GRangesList"
containing the genomic regions where the reads were counted.
colData:Object of class "DataFrame"
containing information on variable values of the samples. Some methods
require the total library size of each sample stored in a column
titled totalCounts.
assays:Object of class SimpleList of a
matrix, named chipVals containing the read counts
per genomic region.
Class "RangedSummarizedExperiment", directly.
signature(object = "ChIPseqSet"): Returns the
matrix with read counts.
signature(object = "ChIPseqSet", value = "matrix"):
Sets the matrix with read counts.
signature(object = "ChIPseqSet", libSize,
log2=FALSE, priorCount=0.1): Returns
an object of ChIPseqSet with read counts standardized by
library size - counts per million (cpm). If the library size is
not given, the column sums of the given object are used. Cpm
values are logarithmized after adding priorCounts,
if log2 is TRUE.
Hans-Ulrich Klein (hklein@broadinstitute.org)
1 | showClass("ChIPseqSet")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.