Interval tree convenience classes for genomic data
Project description
Convenience classes for loading UCSC genomic annotation records into a set of interval tree data structures.
Installation
The easiest way to install most Python packages is via easy_install or pip:
$ pip install intervaltree-bio
The package requires the intervaltree package (which is normally installed automatically when using pip or easy_install).
Usage
One of the major uses for Interval tree data structures is in bioinformatics, where the intervals correspond to genes or other features of the genome.
As genomes typically consist of a set of chromosomes, a separate interval tree for each chromosome has to be maintained. Thus, rather than using an single interval tree, you would typically use something like defaultdict(IntervalTree) to index data of genomic features. The module intervaltree_bio offers a GenomeIntervalTree data structure, which is a similar convenience data structure. In addition to specific methods for working with genomic intervals it also provides facilities for reading BED files and the refGene table from UCSC.
The core example is loading the transcription regions of the knownGene table from the UCSC website:
>> from intervaltree_bio import GenomeIntervalTree >> knownGene = GenomeIntervalTree.from_table() >> len(knownGene)
It is then possible to use the data structure to search known genes within given intervals:
>> result = knownGene[b'chr1'].search(100000, 138529)
It is possible to load other UCSC tables besides knownGene or specify custom URL or file to read the table from. Consult the docstring of the GenomeIntervalTree.from_table method for more details.
Copyright
Copyright (c) Konstantin Tretyakov
MIT license.
Report issues via Github.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file intervaltree_bio-1.0.1.zip
.
File metadata
- Download URL: intervaltree_bio-1.0.1.zip
- Upload date:
- Size: 12.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4f8ee8d5951c06072fdf03463bcd315920ef20b97947e85281330def79cdb2cd |
|
MD5 | aed813f69920e8f53fa8ce678256e226 |
|
BLAKE2b-256 | dee6c542057e7054cdb4139162041588d3b20f49dace223e7303a99a240bf6fd |