From: Diane Trout Date: Tue, 8 Jan 2008 01:32:53 +0000 (+0000) Subject: Add script to make it easier to launch runner X-Git-Tag: 0.1.0~17 X-Git-Url: http://woldlab.caltech.edu/gitweb/?p=htsworkflow.git;a=commitdiff_plain;h=ec6fab3a55789141df50964f9a59e696b7efc23e Add script to make it easier to launch runner --- diff --git a/scripts/runner b/scripts/runner new file mode 100644 index 0000000..655659a --- /dev/null +++ b/scripts/runner @@ -0,0 +1,6 @@ +#!/usr/bin/env python +import sys +from gaworkflow.runner import main + +if __name__ == "__main__": + sys.exit(main(sys.argv[1:])) diff --git a/setup.py b/setup.py index c20c0ec..9b5060e 100644 --- a/setup.py +++ b/setup.py @@ -13,6 +13,7 @@ setup( ], scripts=['scripts/spoolwatcher', 'scripts/copier', + 'scripts/runner', 'scripts/retrieve_config', 'scripts/configure_pipeline'], )