From 28e86f4b1c8fdfbaf6005f7a85f25e5c2bd7d172 Mon Sep 17 00:00:00 2001 From: Diane Trout Date: Tue, 15 Jan 2008 01:07:48 +0000 Subject: [PATCH] move the autotmation scripts into gaworkflow.automation the scripts that were providing the tools to automate running the solexa pipeline were unfairly "priviledged" compared to the components that wrapped talking to the pipeline commands and providing the website, in that the other components were in sub-packages while the automation was just in the gaworkflow package. So I moved them into the somewhat clearer "gaworkflow.automation". The intent is that gaworkflow.automation contains modules that make things happen without human intervention. --- gaworkflow/automation/__init__.py | 0 gaworkflow/{ => automation}/copier.py | 0 gaworkflow/{ => automation}/runner.py | 0 gaworkflow/{ => automation}/spoolwatcher.py | 0 scripts/copier | 2 +- scripts/runner | 2 +- scripts/spoolwatcher | 2 +- 7 files changed, 3 insertions(+), 3 deletions(-) create mode 100644 gaworkflow/automation/__init__.py rename gaworkflow/{ => automation}/copier.py (100%) rename gaworkflow/{ => automation}/runner.py (100%) rename gaworkflow/{ => automation}/spoolwatcher.py (100%) diff --git a/gaworkflow/automation/__init__.py b/gaworkflow/automation/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gaworkflow/copier.py b/gaworkflow/automation/copier.py similarity index 100% rename from gaworkflow/copier.py rename to gaworkflow/automation/copier.py diff --git a/gaworkflow/runner.py b/gaworkflow/automation/runner.py similarity index 100% rename from gaworkflow/runner.py rename to gaworkflow/automation/runner.py diff --git a/gaworkflow/spoolwatcher.py b/gaworkflow/automation/spoolwatcher.py similarity index 100% rename from gaworkflow/spoolwatcher.py rename to gaworkflow/automation/spoolwatcher.py diff --git a/scripts/copier b/scripts/copier index 898f685..7025d57 100644 --- a/scripts/copier +++ b/scripts/copier @@ -1,6 +1,6 @@ #!/usr/bin/env python import sys -from gaworkflow.copier import main +from gaworkflow.automation.copier import main if __name__ == "__main__": sys.exit(main(sys.argv[1:])) diff --git a/scripts/runner b/scripts/runner index 655659a..6b6da11 100644 --- a/scripts/runner +++ b/scripts/runner @@ -1,6 +1,6 @@ #!/usr/bin/env python import sys -from gaworkflow.runner import main +from gaworkflow.automation.runner import main if __name__ == "__main__": sys.exit(main(sys.argv[1:])) diff --git a/scripts/spoolwatcher b/scripts/spoolwatcher index 25a277f..269292e 100644 --- a/scripts/spoolwatcher +++ b/scripts/spoolwatcher @@ -1,6 +1,6 @@ #!/usr/bin/env python import sys -from gaworkflow.spoolwatcher import main +from gaworkflow.automation.spoolwatcher import main if __name__ == "__main__": sys.exit(main(sys.argv[1:])) -- 2.30.2