-
Notifications
You must be signed in to change notification settings - Fork 1
Add version check #32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
@@ -8,6 +8,10 @@ PROJECT_ROOT=${PROJECT_ROOT:-/srv/scratch/sbf-pipelines/proteinfold} | |||
set -x pipefail | |||
set -e | |||
|
|||
# Set dependency version numbers | |||
VERSION_SAMPLESHEET_UTILS="1.1.2" | |||
VERISON_PROTEINFOLD_HASH="fd01013a6109300c917e12356bce0d2297ed1a0e" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should probably lock after 2306cd9 to avoid re-introducing the cif symlink problem
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor typo, otherwise LGTM.
@@ -8,6 +8,10 @@ PROJECT_ROOT=${PROJECT_ROOT:-/srv/scratch/sbf-pipelines/proteinfold} | |||
set -x pipefail | |||
set -e | |||
|
|||
# Set dependency version numbers | |||
VERSION_SAMPLESHEET_UTILS="1.1.2" | |||
VERISON_PROTEINFOLD_HASH="fd01013a6109300c917e12356bce0d2297ed1a0e" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
VERISON_PROTEINFOLD_HASH="fd01013a6109300c917e12356bce0d2297ed1a0e" | |
VERSION_PROTEINFOLD_HASH="fd01013a6109300c917e12356bce0d2297ed1a0e" |
#$tmp_prev_wd=$(pwd) | ||
#cd "${PROJECT_ROOT}/${RUN_ENVIRONMENT}" | ||
#LOCAL_PROTEINFOLD_HASH="git rev-parse HEAD" | ||
#if [ "${LOCAL_PROTEINFOLD_VERSION}" != "${VERISON_PROTEINFOLD_HASH}"]; then |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#if [ "${LOCAL_PROTEINFOLD_VERSION}" != "${VERISON_PROTEINFOLD_HASH}"]; then | |
#if [ "${LOCAL_PROTEINFOLD_VERSION}" != "${VERSION_PROTEINFOLD_HASH}"]; then |
@@ -98,7 +127,7 @@ ARGS="" | |||
|
|||
module load cuda/10.1.243 cuda/11.8.0 cuda/12.2.1 cuda/12.5.0 cudnn/8.4.0.27-11.6 cudnn/8.6.0.163-11.8 cudnn/9.2.0.82-12 cudnn/9.3.0.75-12 | |||
|
|||
nextflow -c "/srv/scratch/sbf-pipelines/proteinfold/kod_proteinfold.config" run main.nf \ | |||
nextflow -c "/srv/scratch/sbf-pipelines/proteinfold/kod_proteinfold.config" run Australian-Structural-Biology-Computing/proteinfold -r ${VERISON_PROTEINFOLD_HASH} \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nextflow -c "/srv/scratch/sbf-pipelines/proteinfold/kod_proteinfold.config" run Australian-Structural-Biology-Computing/proteinfold -r ${VERISON_PROTEINFOLD_HASH} \ | |
nextflow -c "/srv/scratch/sbf-pipelines/proteinfold/kod_proteinfold.config" run Australian-Structural-Biology-Computing/proteinfold -r ${VERSION_PROTEINFOLD_HASH} \ |
Check versions before starting the pipeline