crosscoverage-methods | R Documentation |
Retrieves the cross-coverage values for a range of shift sizes.
signature(object = "ChIPQCexperiment")
Retrieve a matrix
of cross-coverage data for all samples in an ChIP-seq experiment. Each column represents a sample, and each row a shift size, with the value representing the cross-coverage using that size read.
signature(object = "list")
Retrieve a matrix
of cross-coverage data for all samples in a list of ChIPQCsample objects. Each column represents a sample, and each row a shift size, with the value representing the cross-coverage using that size read.
signature(object = "ChIPQCsample")
Retrieve a vector
of cross-coverage data for a sample. Each position in the vector corresponds to a shift size, with the value representing the cross-coverage using that size read.
Thomas Carroll and Rory Stark
ChIPQC-package, ChIPQCexperiment, ChIPQCsample
data(example_QCexperiment) CTCFcoverage = crosscoverage(QCsample(exampleExp,1)) length(CTCFcoverage) plot(CTCFcoverage,type='l', ylab="Cross-coverage", xlab="Fragment length") allcoverages = crosscoverage(exampleExp) dim(allcoverages) for(i in 1:ncol(allcoverages)) lines(allcoverages[,i],col=i)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.