README.md

org.TcCLB.esmer.tritryp.db

Genome-wide annotation package for Trypanosoma cruzi CL Brener Esmeraldo-like, based on annotations from TriTrypDB 32.

This package was generated using the tools from https://github.com/elsayed-lab/eupathdb-organismdb.

Installation

You can install the latest version from Github using:

library('devtools')
install_github('elsayed-lab/org.TcCLB.esmer.tritryp.db')

Usage

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.TcCLB.esmer.tritryp.db)

# list available fields to query
columns(org.TcCLB.esmer.tritryp.db)

# get first 10 genes
gene_ids = head(keys(org.TcCLB.esmer.tritryp.db), 10)

# gene names and descriptions
annotations = AnnotationDbi::select(org.TcCLB.esmer.tritryp.db, 
                                    keys=gene_ids, 
                                    keytype='GID', 
                                    columns=c('CHROMOSOME', 'GENEDESCRIPTION'))
head(annotations)

# GO terms
go_terms = AnnotationDbi::select(org.TcCLB.esmer.tritryp.db, 
                                 keys=gene_ids, 
                                 keytype='GID', 
                                 columns=c('GO', 'ONTOLOGYALL'))
head(go_terms)

# KEGG pathways
kegg_paths = AnnotationDbi::select(org.TcCLB.esmer.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:

  1. http://www.bioconductor.org/help/workflows/annotation-data/
  2. http://www.bioconductor.org/packages/release/data/annotation/html/org.Hs.eg.db.html
  3. http://training.bioinformatics.ucdavis.edu/docs/2012/05/DAV/lectures/annotation/annotation.html


elsayed-lab/org.TcCLB.esmer.tritryp.db documentation built on May 16, 2019, 5:03 a.m.