Description Usage Arguments Value
Novel exons are predicted from paired-end reads where each read spans one
splice junction. First, the read pairs are filtered and the distance between
the end of the first junction and the start of the second junction has to be
< 2 * (read_length - overhang_min) + min_intron_size
. Here, read_length
is the length of the reads, overhang_min
is the minmal required read
overhang over a splice junction of the alignment tool and min_intron_size
is the minimal required intron length of the alignment tool. For example,
paired-end reads with a lenght of 101 nts and a minimal overhang of 6 and a
minimal intron length of 21 allow a distance of at most 211 nucleotides
between the two splice junctions: 2 * (101 - 6) + 21 = 211
. If the distance
between the two splice junctions exceeds the limit, it cannot be guaranteed
that the junctions are connected to the same exon. Splice junction pairs that
are already annotated in a transcript are removed. Novel exons are predicted
from the remaining splice junction pairs.
1 2 3 4 5 6 7 | predict_jrp_exon(
junc_reads,
annotation,
read_length = 101,
overhang_min = 12,
min_intron_size = 21
)
|
junc_reads |
GAlignments object with junction reads. |
annotation |
List with exon and intron annotation as GRanges. Created
with |
read_length |
Integer scalar. Length of your reads in bps. Default 101. |
overhang_min |
Integer scalar. Minimum overhang length for splice
junctions on both sides as defined by the |
min_intron_size |
Integer scalar. Minimum intron size
( |
data.frame with the coordinates of the predicted novel exon. It has 6
columns: seqnames
, lend
, start
, end
, rstart
and strand
.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.