Description Usage Arguments Value Methods and Functions Author(s) See Also Examples
Utility functions related to RNA/DNA sequences, such as extracting
RNA/DNA sequences for features defined in Ensb
.
1 2 | ## S4 method for signature 'EnsDb'
getGenomeFaFile(x, pattern="dna.toplevel.fa")
|
(In alphabetic order)
pattern |
For method |
x |
For all other methods an |
For getGenomeFaFile
: a FaFile-class
object with the genomic DNA sequence.
Returns a FaFile-class
(defined in
Rsamtools
) with the genomic sequence of the genome build
matching the Ensembl version of the EnsDb
object.
The file is retrieved using the AnnotationHub
package,
thus, at least for the first invocation, an internet connection is
required to locate and download the file; subsequent calls will
load the cached file instead.
If no fasta file for the actual Ensembl version is available the
function tries to identify a file matchint the species and genome
build version of the closest Ensembl release and returns that
instead.
See the vignette for an example to work with such files.
Johannes Rainer
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | ## Loading an EnsDb for Ensembl version 75 (genome GRCh37):
library(EnsDb.Hsapiens.v75)
edb <- EnsDb.Hsapiens.v75
## Not run:
## Retrieve a FaFile with the gneomic DNA sequence matching the organism,
## genome release version and, if possible, the Ensembl version of the
## EnsDb object.
Dna <- getGenomeFaFile(edb)
## Extract the transcript sequence for all transcripts encoded on chromosome
## Y.
##extractTranscriptSeqs(Dna, edb, filter=SeqNameFilter("Y"))
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.