DetectEvents.ALE.NegStrand {MARVEL} | R Documentation |
Detect alternative last exons on negative strand
Description
Detects alternative last exons, specifically for genes transcribed on the negative strand of the DNA.
Usage
DetectEvents.ALE.NegStrand(
MarvelObject,
parsed.gtf = NULL,
min.cells = 50,
min.expr = 1,
track.progress = FALSE
)
Arguments
MarvelObject |
S3 object generated from |
parsed.gtf |
Data frame. GTF file with the gene_id parsed. Generated from the |
min.cells |
Numeric value. The minimum number of cells in which the gene is expressed for the gene to included for splicing event detected and quantification. To be used in conjunction with |
min.expr |
Numeric value. The minimum expression value for the gene to be considered to be expressed in a cell. Default value is |
track.progress |
Logical. If set to |
Value
An object of class S3 with new slot MarvelObject$SpliceFeature$ALE.NegStrand
.
Examples
marvel.demo <- readRDS(system.file("extdata/data", "marvel.demo.rds", package="MARVEL"))
marvel.demo <- DetectEvents.ALE.NegStrand(MarvelObject=marvel.demo,
parsed.gtf=NULL,
min.cells=5,
min.expr=1,
track.progress=FALSE
)