You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Log in to the LSF cluster (currently codon), where all data processing must take place.
Using a become command, switch to a common EVA production user instead of your personal account.
Adjust and execute the commands below to set up the environment. Notes:
The first five variables are installation-specific and are blanked in this repository. You can get the values for the EVA installation from the private repository.
These instructions use the Gitlab deployment of the pipeline onto the cluster. To use another installation just modify CODE_ROOT and PYTHON_BIN accordingly.
# This variable should point to the directory where the clone of this repository is located on the clusterexport CODE_ROOT=
# Location of Python installation which you configured using build instructionsexport PYTHON_INSTALL_PATH=
# Location of Nextflow installation pathexport NEXTFLOW_INSTALL_PATH=
# The directory where subdirectories for each batch will be createdexport BATCH_ROOT_BASE=
# Base path of FTP directory on the clusterexport FTP_PATH_BASE=
# Setting up pathsexport PATH=${PYTHON_INSTALL_PATH}:${NEXTFLOW_INSTALL_PATH}:$PATHexport PYTHONPATH=${PYTHON_INSTALL_PATH}# Location of Python executable, pointing to the virtualenvexport PYTHON_BIN=${CODE_ROOT}/env/bin/python