The Python GTF toolkit (pygtftk) package: easy handling of GTF files
Project description
Pip package |
|
Platforms |
|
License |
|
Build status |
|
Repository size |
|
Conda |
|
Latest conda |
|
Downloads |
|
Contribution |
|
Github hits |
|
Issues |
|
Documentation |
Python GTF toolkit (pygtftk)
The Python GTF toolkit (pygtftk) package is intented to ease handling of GTF/GFF2.0 files (Gene Transfer Format). It currently does not support GFF3 file format. The pygtftk package is compatible with Python >=3.5,<3.7 and relies on libgtftk, a library of functions written in C.
The package comes with a set of UNIX commands that can be accessed through the gtftk program. The gtftk program proposes several atomic tools to filter, convert, or extract data from GTF files. The gtftk set of Unix commands can be easily extended using a basic plugin architecture. All these aspects are covered in the help sections.
While the gtftk Unix program comes with hundreds of unitary and functional tests, it is still upon active development and may thus suffer from bugs that remain to be discovered. Feel free to post any problem or required enhancement in the issue section of the github repository.
NB: The Documentation about the latest release is available as a github page. The readthedoc version won’t be maintained and will be close in the near future. This choice was motivated by the impossibility to maintain a dynamic documentation (using sphinx/sphinxcontrib-programoutput) given the computing time provided by readthedoc server.
System requirements
Depending on the size of the GTF file, pygtftk and gtftk may require lot of memory to perform selected tasks. A computer with 16Go is recommended in order to be able to pipe several commands when working with human annotations from ensembl release (e.g. 91). When working with a cluster think about reserving sufficient memory.
At the moment, the gtftk program has been tested on:
Linux (Ubuntu 12.04 and 18.04)
OSX (Yosemite, El Capitan, Mojave).
Installation
Installation through conda package building
Installation through conda should be the preferred install solution. The pygtftk package and gtftk command line tool require external dependencies with some version constrains.
If conda is not available on your system, first install miniconda from the official web site and make sure you have bioconda and conda-forge channels set up in the order below.
conda config --add channels defaults conda config --add channels bioconda conda config --add channels conda-forge
Then you can simply install pygtftk in its own isolated environment and activate it.
conda create -n pygtftk -c guillaumecharbonnier pygtftk conda activate pygtftk
Installation through setup.py
This is not the preferred way for installation. Choose conda whenever possible. We have observed several issues with dependencies that still need to be fixed.
git clone git@github.com:dputhier/pygtftk.git pygtftk cd pygtftk # Check your Python version (>=3.5,<3.7) pip install -r requirements.txt python setup.py install
Installation through pip
Prerequisites
Again, this is not the preferred way for installation. Please choose conda whenever possible. We have observed several issues with dependencies that still need to be fixed.
Running pip
Installation through pip can be done as follow.
pip install -r requirements.txt pip install pygtftk # It is important to call gtftk -h # to look for plugins and their # CLI in ~/.gtftk # before going further gtftk -h
Documentation
Documentation about the latest release is available as a github page.
Testing
Running functional tests
A lot of functional tests have been developed to ensure consistency with expected results. This does not rule out that bugs may hide throughout the code… In order to check that installation is functional you may be interested in running functional tests. The definition of all functional tests declared in gtftk commands is accessible using the -p/–plugin-tests argument:
gtftk -p
To run the tests, you will need to install bats (Bash Automated Testing System). Once bats is installed run the following commands:
# The tests should be run in the pygtftk git # directory because several tests contains references (relative path) # to file enclosed in pygtftk/data directory. gtftk -p > gtftk_test.bats bats gtftk_test.bats
Note, alternatively you may directly call the tests using the Makefile.
make clean make test
Or run tests in parallel using:
make clean make test_para -j 10 # Using 10 cores
Running unitary tests
Several unitary tests have been implemented using doctests. You can run them using nose through the following command line:
make nose
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 Distributions
Built Distributions
Hashes for pygtftk-1.0.4-cp36-cp36m-manylinux1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ea7aa77119fce01472f64f284e2e8806f86e8d09eb6b0bc2f2510536d8fd4050 |
|
MD5 | 9fa4984647e2185753a51879c804a4a0 |
|
BLAKE2b-256 | 5f8ca77cca34f6efcdf33420ddac612d5a4e6fc160114707b2af337782b0a462 |
Hashes for pygtftk-1.0.4-cp36-cp36m-macosx_10_7_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7771b59020f091bca5f3038c49f199d0532c08ced098ac9ad0d74d882567c934 |
|
MD5 | b2f664ce7b169ed43049f4870f2549e2 |
|
BLAKE2b-256 | d67653ae88745e76d9e6df956bc51e699cc43f344d50610a07b1ed99759c7a4c |
Hashes for pygtftk-1.0.4-cp35-cp35m-manylinux1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | aeaec134df5c232e0ad64aa27a3ae38f611d8f85cf9e61293f9bc09cf988310e |
|
MD5 | 8dcf409e4085f19be6f3edddeb5d911d |
|
BLAKE2b-256 | 65f53417e032534274a637797696f79877072fb526657a9027a3cf2f68f682a2 |