Learn R Programming

ChIPQC (version 1.8.2)

Normalisedaveragepeaksignal-methods: Retrieve normalised average peak profiles

Description

Retrieve normalised average peak profiles

Arguments

Methods

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 = "ChIPQCsample")
Retrieve a vector representing the normalised average peak profile for a sample. Each column represents a basepair position, centered on the peak summits.

See Also

ChIPQC-package, ChIPQCexperiment, ChIPQCsample

Examples

Run this code
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)

Run the code above in your browser using DataLab