From e35de5f4c8212054a21e05e4b424763c2030eaea Mon Sep 17 00:00:00 2001 From: trvinh Date: Tue, 6 Feb 2024 13:12:15 +0100 Subject: [PATCH] fixed doAnnoForMissing --- greedyFAS/annoFAS/checkAnno.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/greedyFAS/annoFAS/checkAnno.py b/greedyFAS/annoFAS/checkAnno.py index f18482e..b44b6fe 100644 --- a/greedyFAS/annoFAS/checkAnno.py +++ b/greedyFAS/annoFAS/checkAnno.py @@ -87,7 +87,7 @@ def doAnnoForMissing(taxon, missingAnno, jsonFile, outPath, cpus, silent, annoTo annoCmd = 'fas.doAnno -i %s -o %s --cpus %s' % (faFile, outPath, cpus) if annoToolFile: - annoCmd += ' -annoToolFile %s' % annoToolFile + annoCmd += ' --annoToolFile %s' % annoToolFile if silent: annoCmd = annoCmd + ' > /dev/null 2>&1' try: diff --git a/setup.py b/setup.py index 70f236b..e520057 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ setup( name='greedyFAS', - version='1.18.9', + version='1.18.10', python_requires='>=3.7.0', description='A tool to compare protein feature architectures', long_description=long_description,