Description Usage Arguments Value Examples
This function extracts the flanking regions of 5' and 3' boundaries of a given set of genomic features, splits them into 100 equally sized bins and computes the per-bin coverage of query regions across these boundaries.
1 2 3 4 5 6 | getFeatureBoundaryCoverageBin(
queryRegions,
featureCoords,
flankSize = 50,
sampleN = 0
)
|
queryRegions |
GRanges object imported from a BED file using
|
featureCoords |
GRanges object containing the target feature coordinates |
flankSize |
Positive integer that determines the number of base pairs to extract around a given genomic feature boundary |
sampleN |
A positive integer value less than the total number of featuer coordinates that determines whether the target feature coordinates should be randomly downsampled. If set to 0, no downsampling will happen. If |
a data frame containin three columns. 1. fivePrime: Coverage at 5' end of features 2. threePrime: Coverage at 3' end of features; 3. bases: distance (in bp) to the boundary
1 2 3 4 5 6 7 8 9 | data(queryRegions)
data(gff)
txdb <- GenomicFeatures::makeTxDbFromGRanges(gff)
transcriptCoords <- GenomicFeatures::transcripts(txdb)
transcriptEndCoverageBin <- getFeatureBoundaryCoverageBin (
queryRegions = queryRegions,
featureCoords = transcriptCoords,
flankSize = 100,
sampleN = 1000)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.