• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/H16-Dec-2021-223,823176,358

scripts/H16-Dec-2021-6,5654,618

src/H16-Dec-2021-3,3202,272

LICENSEH A D16-Dec-20211.1 KiB2117

MANIFEST.inH A D16-Dec-2021148 76

PKG-INFOH A D16-Dec-20212.9 KiB6546

README.mdH A D16-Dec-20211.7 KiB3620

pyproject.tomlH A D16-Dec-20211.1 KiB3329

setup.cfgH A D16-Dec-20211.6 KiB6455

setup.pyH A D16-Dec-20217 KiB181110

README.md

1[![Build Status](https://travis-ci.org/bxlab/bx-python.svg?branch=master)](https://travis-ci.org/bxlab/bx-python)
2
3[![Read the Docs](https://img.shields.io/readthedocs/bx-python.svg)](https://bx-python.readthedocs.io/)
4
5# bx-python
6
7The bx-python project is a Python library and associated set of scripts for rapid implementation of genome scale analyses. The library contains a variety of useful modules, but the particular strengths are:
8
9  * Classes for reading and working with genome-scale multiple local alignments (in MAF, AXT, and LAV formats)
10  * Generic data structure for indexing on disk files that contain blocks of data associated with intervals on various sequences (used, for example, to provide random access to individual alignments in huge files; optimized for use over network filesystems)
11  * Data structures for working with intervals on sequences
12    * "Binned bitsets" which act just like chromosome sized bit arrays, but lazily allocate regions and allow large blocks of all set or all unset bits to be stored compactly
13    * "Intersecter" for performing fast intersection tests that preserve both query and target intervals and associated annotation
14
15## Requirements
16
17Build currently requires liblzo, e.g. sudo apt-get install liblzo2-dev on debian/ubuntu).
18
19## Installing
20
21The package can be installed with pip:
22
23```pip install bx-python```
24
25It is available in [bioconda](https://anaconda.org/bioconda/bx-python) (recommended):
26
27```conda install -c conda-forge -c bioconda bx-python```
28
29It is available in [Debian](https://tracker.debian.org/pkg/python-bx) and [Ubuntu](https://packages.ubuntu.com/python3-bx):
30
31```sudo apt install python3-bx```
32
33Or can be built from a checkout of the repository:
34
35```python setup.py install```
36