Description Usage Arguments Value Examples
View source: R/meta_analysis_functions.R
This function is a wrapper function to run RCAS::getFeatureBoundaryCoverage multiple times, which is useful to get coverage signals across different kinds of transcript features for a given list of bed files imported as a GRangesList object.
1 | getFeatureBoundaryCoverageMulti(bedData, txdbFeatures, sampleN = 10000)
|
bedData |
GRangesList object imported from multiple BED files
using |
txdbFeatures |
List of GRanges objects - outputs of
|
sampleN |
(default=10000) Positive integer value that is used to randomly down-sample the target feature coordinates to improve the runtime. Set to 0 to avoid downsampling. |
A data.frame object with coverage data at three prime and five prime boundaries of a list of transcript features
1 2 3 4 5 6 | data(gff)
data(queryRegions)
queryRegionsList <- GenomicRanges::GRangesList(queryRegions, queryRegions)
names(queryRegionsList) <- c('q1', 'q2')
txdbFeatures <- getTxdbFeaturesFromGRanges(gffData = gff)
getFeatureBoundaryCoverageMulti(queryRegionsList, txdbFeatures, sampleN = 500)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.