Description Usage Arguments Value Examples
View source: R/getRandomBSJunctions.R
The function getRandomBSJunctions() retrieves random back-spliced junctions from the user genome annotation.
1 | getRandomBSJunctions(gtf, n = 100, f = 10, setSeed = NULL)
|
gtf |
A dataframe containing genome annotation information This can be
generated with |
n |
Integer specifying the number of randomly selected transcripts from which random back-spliced junctions are extracted. Default value = 100. |
f |
An integer specifying the fraction of single exon circRNAs that have to be present in the output data frame. Default value is 10. |
setSeed |
An integer which is used for selecting random back-spliced junctions. Default values is set to NULL. |
A data frame.
1 2 3 4 5 | # Load short version of the gencode v19 annotation file
data("gtf")
# Get 10 random back-spliced junctions
randomBSJunctions <- getRandomBSJunctions(gtf, n = 10, f = 10)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.