README.md

Trypanosoma.cruzi.CLBrener.Esmeraldo

Meta-package linking species-specific annotations for Trypanosoma cruzi CL Brener Esmeraldo-like, based on annotated genes 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/Trypanosoma.cruzi.CLBrener.Esmeraldo')

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 Homo.sapiens.

Example usage:

library(Trypanosoma.cruzi.CLBrener.Esmeraldo)

# list available fields to query
columns(Trypanosoma.cruzi.CLBrener.Esmeraldo)

# get first 10 genes
gene_ids = head(keys(Trypanosoma.cruzi.CLBrener.Esmeraldo), 10)

# fields of interest
fields = c('CHROMOSOME', 'GENEDESCRIPTION', 'TXSTRAND', 'TXSTART', 'TXEND')

# Gene info
annotations = AnnotationDbi::select(Trypanosoma.cruzi.CLBrener.Esmeraldo, 
                                    keys=gene_ids, 
                                    keytype='GID', 
                                    columns=fields)
head(annotations)

# KEGG pathways
kegg_mapping = AnnotationDbi::select(Trypanosoma.cruzi.CLBrener.Esmeraldo, keys=gene_ids, 
                                     keytype='GID',
                                     columns=c('GO', 'TERM', 'ONTOLOGYALL'))
head(kegg_mapping)

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://bioconductor.org/packages/release/bioc/html/OrganismDbi.html
  3. http://training.bioinformatics.ucdavis.edu/docs/2012/05/DAV/lectures/annotation/annotation.html
  4. http://bioconductor.org/packages/release/data/annotation/html/Homo.sapiens.html


elsayed-lab/Trypanosoma.cruzi.CLBrener.Esmeraldo documentation built on May 16, 2019, 3:57 a.m.