changeset 9:32a43bc3dd58 draft

planemo upload for repository https://github.com/pjbriggs/Amplicon_analysis-galaxy commit f72ff88ee11d09703bf38524dbb8026ee14bc3ef-dirty
author pjbriggs
date Mon, 18 Jun 2018 07:17:52 -0400
parents 8292f8262a9d
children b47cf1d6fb47
files amplicon_analysis_pipeline.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/amplicon_analysis_pipeline.py	Mon Jun 18 07:12:56 2018 -0400
+++ b/amplicon_analysis_pipeline.py	Mon Jun 18 07:17:52 2018 -0400
@@ -100,7 +100,7 @@
     # Locate executable on PATH
     for p in os.environ['PATH'].split(os.pathsep):
         exe = os.path.join(name)
-        if os.path.isfike(exe) os.access(exe,os.X_OK):
+        if os.path.isfile(exe) and os.access(exe,os.X_OK):
             return exe
     return None