Parse and Query Genomic File Formats
EFS parser provides parsers and utility methods to read and query commonly used genomic file formats. The results of the query are transformed into a Pandas DataFrame. This allows users to take advantage of many of the visual and analysis packages in the pandas/numpy ecosystem.
A new parser for a file format can be added to the package. The minimum skeleton is available in the skeleton directory
This project has been set up using PyScaffold 4. For details and usage information on PyScaffold see https://pyscaffold.org/.
use a virtualenv for testing & development. To setup run the following commands from the project directory
virtualenv env --python=python3
source env/bin/activate # (activate.fish if using the fish-shell)
pip install -r requirements.txt
# to deactivate virtualenv
deactivate
- Test -
`python setup.py test`
- Docs -
`python setup.py docs`
- Build
- source distribution
`python setup.py sdist`
- binary distribution
`python setup.py bdist`
- wheel distribution
`python setup.py bdist_wheel`
- source distribution