Kyos¶
Contents:
Kyos¶
Tools for haploid variant calling with Deep Neural Networks.
Kyos was developed by the United States Food and Drug Administration, Center for Food Safety and Applied Nutrition.
- Free software
- Documentation: https://kyos.readthedocs.io
- Source Code: https://github.com/CFSAN-Biostatistics/kyos
- PyPI Distribution: https://pypi.python.org/pypi/kyos
Features¶
- Extract features from a BAM file
- Train and Test a neural network
License¶
See the LICENSE file included in the Kyos distribution.
Installation¶
At the command line:
$ pip install --user kyos
Update your .bashrc file with the path to user-installed python packages:
export PATH=~/.local/bin:$PATH
Or, if you have virtualenvwrapper installed:
$ mkvirtualenv kyos
$ pip install kyos
Upgrading Kyos¶
If you previously installed with pip, you can upgrade to the newest version from the command line:
$ pip install --user --upgrade kyos
Uninstalling Kyos¶
If you installed with pip, you can uninstall from the command line:
$ pip uninstall kyos
Usage¶
Before you can use Kyos to call variants, you will need to prepare the input datasets. The workflow begins with one or more BAM files. If you don’t already have BAM files, you could use the CFSAN SNP Pipeline to create the BAM files.
When extracting features from BAM files, you will need to supply the known-truth if you intend to
use the tabulated features for training and testing the neural network. The -t
command line
option to the tabulate
command adds an extra Truth
column to the output tsv file.
Kyos is currently dependent upon SNP Mutator to generate the known-truth datasets for supervised learning. A future version will use VCF files instead.
To extract tabular data from a BAM file:
kyos tabulate -t TRUTH_FILE input.bam output.tsv ref.fasta
To merge multiple tabulated files:
kyos merge file1.tsv file2.tsv file3.tsv ... > train.tsv
To train a neural network model:
kyos train train.tsv validate.tsv model.h5
To test a neural network model:
kyos test model.h5 test.tsv
Contributing¶
Contributions are welcome, and they are greatly appreciated! Every little bit helps, and credit will always be given.
You can contribute in many ways:
Types of Contributions¶
Report Bugs¶
Report bugs at https://github.com/CFSAN-Biostatistics/kyos/issues.
If you are reporting a bug, please include:
- Your operating system name and version.
- Any details about your local setup that might be helpful in troubleshooting.
- Detailed steps to reproduce the bug.
Fix Bugs¶
Look through the GitHub issues for bugs. Anything tagged with “bug” is open to whoever wants to implement it.
Implement Features¶
Look through the GitHub issues for features. Anything tagged with “feature” is open to whoever wants to implement it.
Write Documentation¶
Kyos could always use more documentation, whether as part of the official Kyos docs, in docstrings, or even on the web in blog posts, articles, and such.
Submit Feedback¶
The best way to send feedback is to file an issue at https://github.com/CFSAN-Biostatistics/kyos/issues.
If you are proposing a feature:
- Explain in detail how it would work.
- Keep the scope as narrow as possible, to make it easier to implement.
- Remember that this is a volunteer-driven project, and that contributions are welcome :)
Get Started!¶
Ready to contribute? Here’s how to set up kyos for local development.
Fork the kyos repo on GitHub.
Clone your fork locally:
$ git clone git@github.com:your_name_here/kyos.git
Install your local copy into a virtualenv. Assuming you have virtualenvwrapper installed, this is how you set up your fork for local development:
$ mkvirtualenv kyos $ cd kyos/ $ pip install sphinx_rtd_theme # the documentation uses the ReadTheDocs theme $ pip install pytest $ python setup.py develop
Create a branch for local development:
$ git checkout -b name-of-your-bugfix-or-feature
Now you can make your changes locally.
When you’re done making changes, check that your changes pass flake8 and the tests, including testing other Python versions with tox:
$ flake8 kyos tests $ pytest -v $ tox
To get flake8 and tox, just pip install them into your virtualenv.
Update the documentation and review the changes locally with sphinx:
$ cd docs $ sphinx-build -b html . ./_build $ xdg-open _build/index.html
Commit your changes and push your branch to GitHub:
$ git add . $ git commit -m "Your detailed description of your changes." $ git push origin name-of-your-bugfix-or-feature
Submit a pull request through the GitHub website.
Pull Request Guidelines¶
Before you submit a pull request, check that it meets these guidelines:
- The pull request should include tests.
- If the pull request adds functionality, the docs should be updated. Put your new functionality into a function with a docstring, and add the feature to the list in README.rst.
- The pull request should work for Python 2.7, 3.4, 3.5, 3.6, and for PyPy.
Credits¶
Development Lead¶
- Nathan Xue <xue.nathanv1.0@gmail.com>
CFSAN Bioinformatics Team¶
- Nathan Xue <xue.nathanv1.0@gmail.com>
External Contributors¶
None yet. Why not be the first?