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.
This commit is contained in:
John Chilton
2015-10-20 19:19:19 +01:00
parent 5c7dd75fd0
commit ac0cfbd2e3
+7
View File
@@ -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