Skip to content

Commit

Permalink
Updated versions
Browse files Browse the repository at this point in the history
Also removed testing artifacts
  • Loading branch information
iquasere committed Jan 12, 2021
1 parent cf66471 commit f6c240d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "recognizer" %}
{% set version = "1.4.0" %}
{% set version = "1.4.1" %}
{% set sha256 = "aea5ac40e5b58490c913aa0a1f6d205d54e80e11aa692b40d1fc5c59a5dbe978" %}

package:
Expand Down
8 changes: 3 additions & 5 deletions recognizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import pandas as pd
from progressbar import ProgressBar

__version__ = '1.4.0'
__version__ = '1.4.1'


def get_arguments():
Expand Down Expand Up @@ -140,12 +140,10 @@ def download_resources(directory):
# KOG
'https://ftp.ncbi.nlm.nih.gov/pub/COG/KOG/kog'
]:
pass
#run_command('wget {} -P {}'.format(location, directory))
run_command('wget {} -P {}'.format(location, directory))

for file in ['cddid_all.tbl', 'eggnog4.protein_id_conversion.tsv', 'NOG.members.tsv']:
#run_command('gunzip {}/{}.gz'.format(directory, file))
pass
run_command('gunzip {}/{}.gz'.format(directory, file))

# Extract the smps
if sys.platform == "darwin":
Expand Down

0 comments on commit f6c240d

Please sign in to comment.