Skip to content

Commit

Permalink
Merge branch 'Bugfixes'
Browse files Browse the repository at this point in the history
  • Loading branch information
kescobo committed Apr 27, 2017
2 parents ed76758 + ff831e2 commit fce617d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions bin/kv_import.py
Expand Up @@ -49,9 +49,9 @@
mongo_import_genbank(os.path.join(INPUT, f), DB, "genes")
success = 1
elif os.path.isfile:
if f.endswith(".gb") or f.endswith(".gbk"):
logging.inf("** Importing {} **".format(f))
mongo_import_genbank(os.path.join(INPUT, f), DB, "genes")
if INPUT.endswith(".gb") or f.endswith(".gbk"):
logging.info("** Importing {} **".format(INPUT))
mongo_import_genbank(INPUT, DB, "genes")
success = 1

if not success:
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -3,14 +3,14 @@

setup(
name = "kvasirHGT",
version = "v0.6.4",
version = "v0.6.5",
author = "Kevin Bonham, PhD",
author_email = "kevbonham@gmail.com",
description = "A package to identify HGT in bacterial genomes",
license = "MIT",
keywords = ["HGT", "biology", "bacteria", "genomics"],
url = "http://github.com/kescobo/kvasir",
download_url = 'https://github.com/kescobo/kvasir/archive/v0.6.4-beta.tar.gz',
download_url = 'https://github.com/kescobo/kvasir/archive/v0.6.5-beta.tar.gz',
packages=['kvasir', 'tests'],
scripts=[os.path.join('bin', 'kv_blast.py'),
os.path.join('bin', 'kv_analysis.py'),
Expand Down

0 comments on commit fce617d

Please sign in to comment.