spliceEvent: Get splicing events

Description Usage Arguments Value Examples

View source: R/spliceEvent.R

Description

Get differentical usage of alternative Translation Initiation Sites, alternative Polyadenylation Sites or alternative splicing sites

Usage

1
spliceEvent(coverage, group1, group2)

Arguments

coverage

Coverages of feature region with extensions. Output of coverageDepth

group1, group2

The sample names of group 1 and group 2

Value

A GRanges object of splice events.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
## Not run: 
path <- system.file("extdata", package="ribosomeProfilingQC")
RPFs <- dir(path, "RPF.*?\\.[12].bam$", full.names=TRUE)
gtf <- file.path(path, "Danio_rerio.GRCz10.91.chr1.gtf.gz")
coverage <- coverageDepth(RPFs, gtf=gtf,
                  level="gene", region="feature with extension")
group1 <- c("RPF.KD1.1", "RPF.KD1.2")
group2 <- c("RPF.WT.1", "RPF.WT.2")
se <- spliceEvent(coverage, group1, group2)

## End(Not run)

ribosomeProfilingQC documentation built on March 13, 2021, 2:01 a.m.