Skip to main content

Python interface to access data from The Comparative Toxicogenomics Database (CTD)

Project description

CTD Python

Pyhton interface to access data from The Comparative Toxicogenomics Database (CTD)

install

pip3 install ctd-python

import the package in order to pull the data

from ctd import get_data

The package offers the following resources as DataFrames

  • GeneInteractionTypes
  • ChemicalPathwaysEnriched
  • GeneDisease
  • GenePathways
  • DiseasePathways
  • ChemocalPhenoTypeInteractions
  • Chemicals
  • Genes
  • ChemicalGeneInteractions
  • Chemicals
  • Diseases

Get the Gene Information for TNF

gene_df = get_data('Genes')
tnf_df = gene_df[gene_df['GeneSymbol'] == 'TNF']

Get Chemical Interactions for TNF

chem_gene_df = get_data('ChemicalGeneInteractions')
tnf_chem_df = chem_gene_df[chem_gene_df['GeneSymbol'] == 'TNF']

Get Disease Hierarchy for Parkinson Disease

child_diseases = get_disease_hierarchy('MESH:D010300')

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ctd-python-0.2.1.tar.gz (3.4 kB view hashes)

Uploaded Source

Built Distribution

ctd_python-0.2.1-py3-none-any.whl (3.8 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page