From ac0cfbd2e32944d0f71eda877d1e8767a86d7cb3 Mon Sep 17 00:00:00 2001 From: John Chilton Date: Tue, 20 Oct 2015 19:19:19 +0100 Subject: [PATCH] Add a quick shortcut for starting Galaxy with development tools. Start Galaxy using GALAXY_RUN_WITH_TEST_TOOLS=1 run.sh Enables beta tool formats (e.g. YAML, and CWL downstream), beta workflow modules, and the suite of Galaxy test tools used by testing framework. --- run.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/run.sh b/run.sh index 2f201996712..9a655b50968 100755 --- a/run.sh +++ b/run.sh @@ -69,6 +69,13 @@ fi python ./scripts/check_python.py || exit 1 +if [ ! -z "$GALAXY_RUN_WITH_TEST_TOOLS" ]; +then + export GALAXY_CONFIG_OVERRIDE_TOOL_CONFIG_FILE="test/functional/tools/samples_tool_conf.xml" + export GALAXY_CONFIG_ENABLE_BETA_WORKFLOW_MODULES="true" + export GALAXY_CONFIG_OVERRIDE_ENABLE_BETA_TOOL_FORMATS="true" +fi + if [ -n "$GALAXY_UNIVERSE_CONFIG_DIR" ]; then python ./scripts/build_universe_config.py "$GALAXY_UNIVERSE_CONFIG_DIR" fi