You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I recently came across your tool and wanted to give it a try. I've successfully installed biobakery_workflows using conda via the conda command: conda install -c biobakery biobakery_workflows. Next I tried to download databases corresponding to the isolate_assembly workflow:
When running the above command, I encounter a FileNotFoundError pointing to download_eggnog_data.py. I have tried and failed to find this file in the GitHub repo. Is the repo not synchronized with the biobakery conda recipe? Is download_eggnog_data.py on another branch that I may download and place in the required location? The received traceback is below. Thanks!
Downloading eggnog mapper databases
Traceback (most recent call last):
File "/home/evan/miniconda3/envs/project/bin/biobakery_workflows_databases", line 11, in<module>sys.exit(main())
File "/home/evan/miniconda3/envs/project/lib/python3.7/site-packages/biobakery_workflows/biobakery_workflows_databases.py", line 238, in main
run_command(["download_eggnog_data.py","--data_dir",eggnog_install_path,"-y"])
File "/home/evan/miniconda3/envs/project/lib/python3.7/site-packages/biobakery_workflows/biobakery_workflows_databases.py", line 73, in run_command
id=subprocess.check_call(command, shell=shell)
File "/home/evan/miniconda3/envs/project/lib/python3.7/subprocess.py", line 358, in check_call
retcode = call(*popenargs, **kwargs)
File "/home/evan/miniconda3/envs/project/lib/python3.7/subprocess.py", line 339, in call
with Popen(*popenargs, **kwargs) as p:
File "/home/evan/miniconda3/envs/project/lib/python3.7/subprocess.py", line 800, in __init__
restore_signals, start_new_session)
File "/home/evan/miniconda3/envs/project/lib/python3.7/subprocess.py", line 1551, in _execute_child
raise child_exception_type(errno_num, err_msg, err_filename)
FileNotFoundError: [Errno 2] No such file or directory: 'download_eggnog_data.py': 'download_eggnog_data.py'
The text was updated successfully, but these errors were encountered:
Scratch that, it appears eggnogg-mapper requires python 2.7 for the conda installation and is not up-to-date with the argparse parser in download_eggnogg_data.py. It appears they have commented this out on their master branch:
Hello,
I recently came across your tool and wanted to give it a try. I've successfully installed
biobakery_workflows
using conda via the conda command:conda install -c biobakery biobakery_workflows
. Next I tried to download databases corresponding to theisolate_assembly
workflow:biobakery_workflows_databases --install isolate_assembly --location $LOCATION
When running the above command, I encounter a
FileNotFoundError
pointing todownload_eggnog_data.py
. I have tried and failed to find this file in the GitHub repo. Is the repo not synchronized with the biobakery conda recipe? Isdownload_eggnog_data.py
on another branch that I may download and place in the required location? The received traceback is below. Thanks!The text was updated successfully, but these errors were encountered: