Transcript annotation package for Trypanosoma brucei brucei TREU927, based on annotated genes from TriTrypDB 43.
This package was generated using the tools from eupathdb-organismdb repository.
You can install the latest version from Github using:
library('devtools')
install_github('wanjauk/TxDb.TbruceiTREU927.tritryp43.genes')
This package is based on the Bioconductor AnnotationDbi interface. As such, the methods for interacting with this package are similar to the ways one can interact with other commonly-used annotation packages such as TxDb.Hsapiens.UCSC.hg19.knownGene.
Example usage:
library(TxDb.TbruceiTREU927.tritryp43.genes)
# list available fields to query
columns(TxDb.TbruceiTREU927.tritryp43.genes)
# get first 10 genes
gene_ids = head(keys(TxDb.TbruceiTREU927.tritryp43.genes), 10)
# gene coordinates and strand
genes = AnnotationDbi::select(TxDb.TbruceiTREU927.tritryp43.genes,
keys=gene_ids,
keytype='GENEID',
columns=c('TXSTART', 'TXEND', 'TXSTRAND'))
head(genes)
For more information, check out the AnnotationDbi - Introduction to Annotation packages vignette.
Additional resources that may be helpful:
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.