From 9aaae65965ef52f3475c2322c3f04b2382e33131 Mon Sep 17 00:00:00 2001 From: Brandon King Date: Thu, 22 Nov 2007 00:03:22 +0000 Subject: [PATCH] [project @ Shortend the s_generating regex; minor bug fix] * Some reason the very end of the line was being auto-wrapped... a simple fix was to search for the begining half of the line. Simple and effective. --- gaworkflow/pipeline/configure_run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gaworkflow/pipeline/configure_run.py b/gaworkflow/pipeline/configure_run.py index 19e2426..34fd3c5 100644 --- a/gaworkflow/pipeline/configure_run.py +++ b/gaworkflow/pipeline/configure_run.py @@ -117,7 +117,7 @@ RUN_FAILED = 'failed' #Info s_start = re.compile('Starting Genome Analyzer Pipeline') s_gerald = re.compile("[\S\s]+--GERALD[\S\s]+--make[\S\s]+") -s_generating = re.compile('Generating journals, Makefiles and parameter files') +s_generating = re.compile('^Generating journals, Makefiles') s_seq_folder = re.compile('^Sequence folder: ') s_seq_folder_sub = re.compile('want to make ') s_stderr_taskcomplete = re.compile('^Task complete, exiting') -- 2.30.2