From: Diane Trout Date: Fri, 19 Dec 2008 00:54:06 +0000 (+0000) Subject: Add command to report path to make figuring out which goat_pipeline is running X-Git-Tag: stanford.caltech-merged-database-2009-jan-15~13 X-Git-Url: http://woldlab.caltech.edu/gitweb/?p=htsworkflow.git;a=commitdiff_plain;h=6043e55bc4acbcbeead2e0efe4e79cdfec035083 Add command to report path to make figuring out which goat_pipeline is running --- 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)