Description Usage Arguments Value Note Author(s) Examples
Add start/stop codon, 3'/5' splice signals to features
1 |
x |
An object of type |
An object of type feat
, with all the entries of the original object, but
also with stop codons, start, codons, 3' splice, and 5' splice sites annotated.
If x is stored as a pointer to an object stored in C, signals will be added to x.
Does not correctly handle case of splice site in middle of start or stop codon.
Melissa J. Hubisz and Adam Siepel
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | exampleArchive <- system.file("extdata", "examples.zip", package="rphast")
featFile <- "gencode.ENr334.gp"
unzip(exampleArchive, featFile)
f <- read.feat(featFile)
table(f$feature)
coverage.feat(f[f$feature=="CDS",])
coverage.feat(f[f$feature=="exon",])
f <- add.signals.feat(f)
table(f$feature)
coverage.feat(f[f$feature=="3'splice",])
coverage.feat(f[f$feature=="5'splice",])
coverage.feat(f[f$feature=="start_codon",])
coverage.feat(f[f$feature=="stop_codon",])
unlink(featFile)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.