From 6043e55bc4acbcbeead2e0efe4e79cdfec035083 Mon Sep 17 00:00:00 2001 From: Diane Trout Date: Fri, 19 Dec 2008 00:54:06 +0000 Subject: [PATCH] Add command to report path to make figuring out which goat_pipeline is running --- htsworkflow/automation/runner.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/htsworkflow/automation/runner.py b/htsworkflow/automation/runner.py index 0ab2217..45d4ffc 100644 --- a/htsworkflow/automation/runner.py +++ b/htsworkflow/automation/runner.py @@ -83,6 +83,8 @@ class Runner(rpc.XmlRpcBot): reply = u"starting run for %s" % (words[1]) else: reply = u"need runfolder name" + elif re.match(u"path", msg): + reply = u"My path is: " + unicode(os.environ['PATH']) else: reply = u"I didn't understand '%s'" %(msg) -- 2.30.2