Genome-wide annotation package for Leishmania major strain Friedlin, based on annotations from TriTrypDB 32.
This package was generated using the tools from https://github.com/elsayed-lab/eupathdb-organismdb.
You can install the latest version from Github using:
library('devtools')
install_github('elsayed-lab/org.LmjF.tritryp.db')
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 org.Hs.eg.db.
Example usage:
library(org.LmjF.tritryp.db)
# list available fields to query
columns(org.LmjF.tritryp.db)
# get first 10 genes
gene_ids = head(keys(org.LmjF.tritryp.db), 10)
# gene names and descriptions
annotations = AnnotationDbi::select(org.LmjF.tritryp.db,
keys=gene_ids,
keytype='GID',
columns=c('CHROMOSOME', 'GENEDESCRIPTION'))
head(annotations)
# GO terms
go_terms = AnnotationDbi::select(org.LmjF.tritryp.db,
keys=gene_ids,
keytype='GID',
columns=c('GO', 'ONTOLOGYALL'))
head(go_terms)
# KEGG pathways
kegg_paths = AnnotationDbi::select(org.LmjF.tritryp.db,
keys=gene_ids,
keytype='GID',
columns=c('KEGG_NAME', 'KEGG_PATH'))
head(kegg_paths)
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.