Description Usage Arguments Details Value Author(s) See Also Examples
Extracts predicted genes from the genome used for prediction.
1 2 3 4 | ExtractGenes(x,
myDNAStringSet,
type = "DNAStringSet",
...)
|
x |
An object of class |
myDNAStringSet |
The |
type |
The class of sequences to return. This should be (an unambiguous abbreviation of) one of |
... |
Other parameters passed directly to |
Extracts a set of gene predictions as either DNA, mRNA, or proteins.
An "AAStringSet"
, "DNAStringSet"
, or "RNAStringSet"
determined by type
.
Erik Wright eswright@pitt.edu
FindGenes
, Genes-class
, WriteGenes
1 2 3 4 5 6 7 8 9 | # import a test genome
fas <- system.file("extdata",
"Chlamydia_trachomatis_NC_000117.fas.gz",
package="DECIPHER")
genome <- readDNAStringSet(fas)
x <- FindGenes(genome)
genes <- ExtractGenes(x, genome)
proteins <- ExtractGenes(x, genome, type="AAStringSet")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.