Add script to make it easier to launch runner
authorDiane Trout <diane@caltech.edu>
Tue, 8 Jan 2008 01:32:53 +0000 (01:32 +0000)
committerDiane Trout <diane@caltech.edu>
Tue, 8 Jan 2008 01:32:53 +0000 (01:32 +0000)
scripts/runner [new file with mode: 0644]
setup.py

diff --git a/scripts/runner b/scripts/runner
new file mode 100644 (file)
index 0000000..655659a
--- /dev/null
@@ -0,0 +1,6 @@
+#!/usr/bin/env python
+import sys
+from gaworkflow.runner import main
+
+if __name__ == "__main__":
+  sys.exit(main(sys.argv[1:]))
index c20c0ecdb24475eabb637b036e22049c3ace2b34..9b5060ec169c734ee217fe582d3a43133568ce1d 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -13,6 +13,7 @@ setup(
              ],
   scripts=['scripts/spoolwatcher', 
            'scripts/copier',
+           'scripts/runner',
            'scripts/retrieve_config',
            'scripts/configure_pipeline'],
 )