getTranscriptSequences | R Documentation |
Gets transcript sequences from annotation (gtf or gff) and sequence (fasta) information.
getTranscriptSequences(param=NULL, genomeFn=NULL, featureFn=NULL)
param |
the parameters to load the annotation and sequence files from. |
genomeFn |
|
featureFn |
|
‘genomeFn’ and ‘featureFn’ are determined from ‘param’ when available.
Returns an object of the class DNAStringSet
.
Rehrauer, Hubert
Schmid, Peter
## Not run:
genomeFn <- "/srv/GT/reference/Saccharomyces_cerevisiae/Ensembl/EF4/Sequence/WholeGenomeFasta/genome.fa"
featureFn <- "/srv/GT/reference/Saccharomyces_cerevisiae/Ensembl/EF4/Annotation/Genes/genes.gtf"
ts1 <- getTranscriptSequences(genomeFn=genomeFn, featureFn=featureFn)
param = ezParam()
param$ezRef@refFeatureFile = featureFn
param$ezRef@refFastaFile = genomeFn
ts2 <- getTranscriptSequences(param)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.