changeset 12:fb2af52d67d1 draft

planemo upload for repository https://github.com/pjbriggs/Amplicon_analysis-galaxy commit 53544cd620f81c5cfbdcb277e835f1c6da8588b0-dirty
author pjbriggs
date Mon, 18 Jun 2018 07:54:54 -0400
parents 570228bb2fb7
children c87b166cbfe1
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:27:33 2018 -0400
+++ b/amplicon_analysis_pipeline.py	Mon Jun 18 07:54:54 2018 -0400
@@ -99,7 +99,7 @@
 def find_executable(name):
     # Locate executable on PATH
     for p in os.environ['PATH'].split(os.pathsep):
-        exe = os.path.join(name)
+        exe = os.path.join(p,name)
         if os.path.isfile(exe) and os.access(exe,os.X_OK):
             return exe
     return None