Contributions are welcome, and they are greatly appreciated! Every little bit
helps, and credit will always be given.
You can contribute in many ways:
Report bugs at openomics/issues.
If you are reporting a bug, please include:
Look through the GitHub issues for bugs. Anything tagged with "bug" and "help
wanted" is open to whoever wants to implement it.
Look through the GitHub issues for features. Anything tagged with "enhancement"
and "help wanted" is open to whoever wants to implement it.
OpenOmics could always use more documentation, whether as part of the
official OpenOmics docs, in docstrings within the API, or even on the web in blog posts,
articles, and such.
If you'd like to help write RTD documentations, note:
- Documentation pages are written in markdown using myst-parser
- The Sphinx theme used is furo
- The autodoc package used is sphinx-automodapi
The best way to send feedback is to file an issue at openomics/issues.
If you are proposing a feature:
Ready to contribute? Here's how to set up openomics
for local development.
openomics
repo on GitHub.$ git clone git@github.com:your_name_here/openomics.git
$ git checkout develop
$ mkvirtualenv openomics
$ cd openomics/
$ python setup.py develop
$ git checkout -b name-of-your-bugfix-or-feature
Now you can make your changes locally.
$ flake8 openomics tests
$ python setup.py test or py.test $ tox
To get flake8 and tox, just pip install them into your virtualenv.
$ git add .
$ git commit -m "Your detailed description of your changes."
$ git push develop name-of-your-bugfix-or-feature
Before you submit a pull request, check that it meets these guidelines:
pytest ./
and make sure tests are 100% passing.To run the automated tests locally, run this at the root directory:
pytest ./
To run a subset of tests:
$ py.test tests.test_openomics
To run tests targeting various operating systems and Python versions, make a pull-request to the master branch which
will run as Github Actions Tests.
A reminder for the maintainers on how to deploy. Make sure all your changes are committed (including an entry in
HISTORY.rst). Then run:
$ bumpversion patch # possible: major / minor / patch
$ git push --tags
Github Actions will then deploy to PyPI if tests pass.
Please note that the OpenOmics project is released with a Contributor Code of Conduct. By contributing to this project you agree to abide by its terms.