Skip to content

nbargnesi/resource-generator

 
 

Repository files navigation

Project Overview

Python modules to generate BEL resource documents.

See wiki for information about dataset objects and how to add new datasets.

Resource Generator

To run: './gp_baseline.py -n [dir]' '[dir]' is the working directory to which data will be downloaded and new files generated.

gp_baseline.py runs in several phases:

  1. data download
  2. data parse (and save as pickled objects)
  3. build '.belns' (namespace) files
  4. removed
  5. build '.beleq' (equivalence) files

The pipeline can be started and stopped at any phase using the '-b' and '-e' options. This enables re-rerunning the pipeline on stored data downloads and pickled data objects.

  1. gp_baseline.py - acts as the driver for the resource-generator.
  2. configuration.py - Configures the datasets to be included in the resource-generation pipeline, including initialization of the dataset objects, specification of a download url, and association with a parser
  3. parsers.py - contains parsers for each dataset.
  4. parsed.py - acts as a storage module. Takes the data handed to it by the parser and stores it in a DataObject. Currently all of the data being used in this module is being kept in memory. See bug tracker about a possible solution to this memory constraint.
  5. datasets.py - each DataObject class
    is defined in this module. See wiki for information about DataObject classes, methods, and attributes.
  6. equiv.py - this module will take a DataObject as a parameter, and use that object's defined functions to generate the new .beleq files.
  7. common.py - defines some common functions used throughout the program, namely a download() function and a function that will open and read a gzipped file.
  8. constants.py - any constants used throughout the program are defined in this module.
  9. rdf.py - loads each pickled dataset object generated by Phase II of gp_baseline and generates triples for each namespace 'concept', including id, preferred label, synonyms, concept type, and equivalences.
  10. belanno.py - generates 'belanno' files outside of the main gp_baseline pipeline (gp_baseline does download and create pickled data objects for the annotation data sets).

Change-Log

  1. change_log.py - a separate module from gp_baseline. This module uses two sets ('old' and 'new') of pickled data objects generated by gp_baseline.py. change_log.py outputs a json dictionary mapping old terms to either their replacement terms or the string withdrawn. This dictionary can be consumed by an update script to resolve lost terms in older versioned BEL documents.

Resource files

These scripts are used to generate additional resource files - see openbel-framework-resources

  1. orthology.py - creates the gene-orthology.bel file; requires the pickled data objects from the gp_baseline run.
  2. gene_scaffolding.py - creates the gene_scaffolding_document_9606_10090_10116.bel; requires HGNC, MGI, and RGD '.belns' files generated from the gp_baseline run.
  3. go_complexes_to_bel.py - creates a '.bel' file with statements mapping Gene Ontology (GO) complexes to their human, mouse, and rat complex components based on data from GO. Uses the 'testing' version of the GOCC complexes '.belns' file and the current gene association files from GO. Output not currently used for openbel-framework-resources.

Dependencies

  1. To run these Python scripts, the following software must be installed:
  • Python 3.x - modules are written in Python 3.2.3
  • lxml - used to parse various XML documents.
  • rdflib - used by rdf.py

About

Python modules to generate BEL resource documents.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%