Description Usage Arguments Details Value Author(s) Examples
For identified splice junctions from RNA-Seq, this function finds the junction types for each entry according to the given annotation. Six types of junctions are classified. find more details in the tutorial.
1 | JunctionType(jun, splicemax, txdb, ids, ...)
|
jun |
a GRange object for junctions, the output of function Bed2Range. |
splicemax |
a known exon splice matrix from the annotation. |
txdb |
a TxDb object. |
ids |
a dataframe containing gene/transcript/protein id mapping information. |
... |
additional arguments |
Go to https://genome.ucsc.edu/FAQ/FAQformat.html#format1 for more information about BED format.
a data frame of type and source for each junction.
Xiaojing Wang
1 2 3 4 5 6 7 8 | bedfile <- system.file("extdata/beds", "junctions1.bed", package="customProDB")
jun <- Bed2Range(bedfile,skip=1,covfilter=5)
load(system.file("extdata/refseq", "splicemax.RData", package="customProDB"))
load(system.file("extdata/refseq", "ids.RData", package="customProDB"))
txdb <- AnnotationDbi::loadDb(system.file("extdata/refseq", "txdb.sqlite",
package="customProDB"))
junction_type <- JunctionType(jun, splicemax, txdb, ids)
table(junction_type$jun_type)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.