diff --git a/greedyFAS/setupFAS.py b/greedyFAS/setupFAS.py index 604f5be..65a4b48 100644 --- a/greedyFAS/setupFAS.py +++ b/greedyFAS/setupFAS.py @@ -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: diff --git a/setup.py b/setup.py index 6cb3714..70f236b 100644 --- a/setup.py +++ b/setup.py @@ -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,