From 43fe9e233d6a226b1a3edf2b1a66f22c954dda53 Mon Sep 17 00:00:00 2001
From: Lukas Jelonek <lukas.jelonek@computational.bio.uni-giessen.de>
Date: Mon, 27 Feb 2017 12:35:52 +0100
Subject: [PATCH] Removed relative path in config

---
 modules/blast_vs_swissprot.yaml | 4 ++--
 modules/signalp.yaml            | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/modules/blast_vs_swissprot.yaml b/modules/blast_vs_swissprot.yaml
index 9010a23..ded3304 100644
--- a/modules/blast_vs_swissprot.yaml
+++ b/modules/blast_vs_swissprot.yaml
@@ -8,8 +8,8 @@ name: 'blastp_swissprot'
 info: 'blastp analysis against swissprot'
 
 # The name of the script for the analysis step. Must take a --fasta parameter
-analysis_script: '../bin/module_blast_swissprot.py'
+analysis_script: 'module_blast_swissprot.py'
 
 # The name of the result to json converter script. Must take one parameter, the
 # result file from the analysis_script
-converter_script: '../bin/convert_blast_swissprot.py'
+converter_script: 'convert_blast_swissprot.py'
diff --git a/modules/signalp.yaml b/modules/signalp.yaml
index fbfa51a..fee21f7 100644
--- a/modules/signalp.yaml
+++ b/modules/signalp.yaml
@@ -8,8 +8,8 @@ name: 'signalp'
 info: 'predict signal peptides'
 
 # The name of the script for the analysis step. Must take a --fasta parameter
-analysis_script: '../bin/module_signalp.py'
+analysis_script: 'module_signalp.py'
 
 # The name of the result to json converter script. Must take one parameter, the
 # result file from the analysis_script
-converter_script: '../bin/convert_signalp.py'
+converter_script: 'convert_signalp.py'
-- 
GitLab