Description Usage Arguments Value Note Examples
use EnsDb to generate an exon-level model of genes identified by symbol
1  | genemodelDF(sym, resource, columnsKept = c("gene_id", "tx_id"), ...)
 | 
sym | 
 a character() vector of gene symbols  | 
resource | 
 should be or inherit from EnsDb, answering exons(), with AnnotationFilter::SymbolFilter as filter parameter  | 
columnsKept | 
 character vector used as   | 
... | 
 passed to exons()  | 
data.frame instance with exons in rows
There are many approaches available to acquiring 'gene models' in Bioconductor; this one emphasizes the use of the exons method for Ensembl annotation.
1 2 3 4 5  | if (requireNamespace("EnsDb.Hsapiens.v75")) {
 orm = genemodelDF("ORMDL3", EnsDb.Hsapiens.v75::EnsDb.Hsapiens.v75)
 dim(orm)
}
head(orm)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.