Description Usage Arguments Value Examples
Accessor functions shared with the larger Bioconductor ecosystem.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | ## S4 method for signature 'GenBankRecord'
cds(x)
## S4 method for signature 'GenBankRecord'
exons(x)
## S4 method for signature 'GenBankRecord'
genes(x)
## S4 method for signature 'GenBankRecord'
transcripts(x)
## S4 method for signature 'GenBankRecord'
getSeq(x, ...)
## S4 method for signature 'GenBankFile'
getSeq(x, ...)
## S4 method for signature 'GBAccession'
getSeq(x, ...)
## S4 method for signature 'GenBankRecord'
cdsBy(x, by = c("tx", "gene"))
## S4 method for signature 'GenBankRecord'
exonsBy(x, by = c("tx", "gene"))
## S4 method for signature 'GenBankRecord'
isCircular(x)
## S4 method for signature 'GenBankRecord'
seqinfo(x)
|
x |
The object containing the annotations |
... |
unused. |
by |
character. Factor to group the resulting GRanges by. |
The expected types, GenomicRanges
for most functions,
a DNAStrimgSet
for getSeq
1 2 3 4 | gb = readGenBank(system.file("sample.gbk", package="genbankr"))
cds(gb)
exons(gb)
genes(gb)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.