Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Scheme creation #52

Open
wants to merge 15 commits into
base: development
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ include LICENSE
include README.rst
include MANIFEST.in
include setup.py
recursive-include *.py *.fasta
recursive-include biohansel/subtype/data *.fasta
exclude ipynbs
exclude venv
exclude venv
exclude .venv
global-exclude *.py[co] __pycache__
3 changes: 1 addition & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ Get the latest development code using Git from GitHub:
pip install -e .


Run tests with pytest_:
Run tests with `$ python setup.py test` or pytest_:

.. code-block:: bash

Expand All @@ -280,7 +280,6 @@ Run tests with pytest_:
pytest -s tests/test_qc.py



Legal
=====

Expand Down
275 changes: 0 additions & 275 deletions bio_hansel/main.py

This file was deleted.

4 changes: 2 additions & 2 deletions bio_hansel/__init__.py → biohansel/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-

__version__ = '2.0.0'
program_name = 'bio_hansel'
__version__ = '3.0.0'
program_name = 'biohansel'
program_summary = 'Subtype microbial genomes using SNV targeting k-mer subtyping schemes.'
program_desc = program_summary + '''
Includes schemes for Salmonella enterica spp. enterica serovar Heidelberg and Enteritidis subtyping.
Expand Down
Loading