| startCodons {ORFik} | R Documentation |
In ATGTTTTGC, get the positions ATG. It takes care of exons boundaries, with exons < 3 length.
startCodons(grl, is.sorted = FALSE)
grl |
a |
is.sorted |
a boolean, a speedup if you know the ranges are sorted |
a GRangesList of start codons, since they might be split on exons
gr_plus <- GRanges(seqnames = c("chr1", "chr1"),
ranges = IRanges(c(7, 14), width = 3),
strand = c("+", "+"))
gr_minus <- GRanges(seqnames = c("chr2", "chr2"),
ranges = IRanges(c(4, 1), c(9, 3)),
strand = c("-", "-"))
grl <- GRangesList(tx1 = gr_plus, tx2 = gr_minus)
startCodons(grl, is.sorted = FALSE)