From 2aff9fb0af02cd5cd82a53454acf6a0bfd60f509 Mon Sep 17 00:00:00 2001 From: Diane Trout Date: Tue, 22 Apr 2008 21:58:04 +0000 Subject: [PATCH] also since nothing is currently using the pipelineFinished message from runner remove it --- gaworkflow/automation/runner.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/gaworkflow/automation/runner.py b/gaworkflow/automation/runner.py index f81b682..84e9af2 100644 --- a/gaworkflow/automation/runner.py +++ b/gaworkflow/automation/runner.py @@ -1,4 +1,5 @@ #!/usr/bin/env python +from glob import glob import logging import os import re @@ -196,6 +197,9 @@ class Runner(rpc.XmlRpcBot): if status: logging.info("Runner: Configure: success") self.reportMsg("Configure (%s): success" % (run_dir)) + self.reportMsg( + os.linesep.join(glob(os.path.join(run_dir,'Data','C*'))) + ) else: logging.error("Runner: Configure: failed") self.reportMsg("Configure (%s): FAILED" % (run_dir)) @@ -210,7 +214,7 @@ class Runner(rpc.XmlRpcBot): run_status = run_pipeline(conf_info) if run_status is True: logging.info('Runner: Pipeline: success') - self.piplineFinished(run_dir) + self.reportMsg("Pipeline run (%s): Finished" % (run_dir,)) else: logging.info('Runner: Pipeline: failed') self.reportMsg("Pipeline run (%s): FAILED" % (run_dir)) -- 2.30.2