Skip to content

Commit

Permalink
fixed install pfam from local dir
Browse files Browse the repository at this point in the history
  • Loading branch information
trvinh committed Feb 4, 2024
1 parent 61ae09c commit 3155b57
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion greedyFAS/setupFAS.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ def install_pfam(pfam_version, pfam_path, anno_path):
annoModules.checkFileExist(f'{pfam_path}/{file}')
annoModules.checkFileExist(f'{pfam_path}/{dat_file}')
annoModules.checkFileExist(f'{pfam_path}/{relnotes_file}')
if os.path.isfile(file):
if os.path.isfile(f'{pfam_path}/{file}'):
Path(anno_path + '/Pfam/Pfam-hmms').mkdir(parents=True, exist_ok=True)
# move donwloaded file to anno_path/Pfam/Pfam-hmms
try:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

setup(
name='greedyFAS',
version='1.18.8',
version='1.18.9',
python_requires='>=3.7.0',
description='A tool to compare protein feature architectures',
long_description=long_description,
Expand Down

0 comments on commit 3155b57

Please sign in to comment.