find_ORFs_in_seq.Rd
By Coghlan (2011) A little book of R for bioinformatics. https://a-little-book-of-r-for-bioinformatics.readthedocs.io/en/latest/. Originally called findORFsinSeq()
find_ORFs_in_seq(sq)
sq | Input sequence |
---|
# From Coglan 2011 ## Toy example s1 <- "aaaatgcagtaacccatgccc" find_ORFs_in_seq(s1)#> $orfstarts #> [1] 4 #> #> $orfstops #> [1] 12 #> #> $orflengths #> [1] 9 #>#> $orfstarts #> [1] 298 318 #> #> $orfstops #> [1] 480 371 #> #> $orflengths #> [1] 183 54 #>