Description Methods Author(s) See Also Examples
Retrieve normalised average peak profiles
signature(object = "ChIPQCexperiment")
Retrieve a matrix
of normalised average peak signal data for all samples in a ChIP-seq experiment. Each column represents a sample, and each row a base pair position, centered on peak summits.
signature(object = "list")
Retrieve a matrix
of normalised average peak signal data for all samples in a list of ChIPQCsample objects. Each column represents a sample, and each row a base pair position, centered on peak summits.
signature(object = "ChIPQCsample")
Retrieve a vector
representing the normalised average peak profile for a sample. Each column represents a basepair position, centered on the peak summits.
Thomas Carroll and Rory Stark
ChIPQC-package, ChIPQCexperiment, ChIPQCsample
1 2 3 4 5 6 7 8 | data(example_QCexperiment)
CTCFprofile = Normalisedaveragepeaksignal(QCsample(exampleExp,1))
length(CTCFprofile)
plot(CTCFprofile,type='l',ylab="normalised mean pileup")
allprofiles = Normalisedaveragepeaksignal(exampleExp)
dim(allprofiles)
for(i in 1:ncol(allprofiles)) lines(allprofiles[,i],col=i)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.