88# ==============================================
99echo " Cleaning up previous Docker containers..."
1010set +e # Don't exit on error for cleanup
11- docker kill depmap-data-prep-pipeline-run-test-perf 2> /dev/null || true
12- docker kill depmap-preprocessing-pipeline-run-test-perf 2> /dev/null || true
11+ docker kill depmap-data-prep-pipeline-run-iqa 2> /dev/null || true
12+ docker kill depmap-preprocessing-pipeline-run-iqa 2> /dev/null || true
1313set -e # Re-enable exit on error
1414
1515# ==============================================
2222 ssh-agent bash -c ' ssh-add /home/ubuntu/.ssh/depmap-deploy-repo-key; git clone git@github.com:broadinstitute/depmap-deploy.git'
2323fi
2424
25+ # TODO: THIS IS HARDCODED FOR NOW. WE NEED TO MAKE THIS MORE FLEXIBLE.
2526( cd depmap-deploy && git checkout depmap-pipeline-reorg-25q3 )
2627
2728# ==============================================
@@ -41,7 +42,7 @@ rsync -av depmap-deploy/non-public-pipeline-files/ pipeline/
4142
4243# Run the Python data prep pipeline script
4344echo " Starting data prep pipeline..."
44- python pipeline/data-prep-pipeline/data_prep_pipeline_runner.py test-perf depmap-data-prep-pipeline-run-test-perf
45+ python pipeline/data-prep-pipeline/data_prep_pipeline_runner.py iqa depmap-data-prep-pipeline-run-iqa
4546
4647# Check if data prep pipeline succeeded
4748if [ $? -ne 0 ]; then
@@ -56,8 +57,8 @@ echo "Data prep pipeline completed successfully."
5657# ==============================================
5758echo " ==================== PREPROCESSING PIPELINE ===================="
5859
59- export PREPROCESSING_PUBLISH_DEST=" gs://preprocessing-pipeline-outputs/depmap-pipeline-25q4/preprocessing-pipeline-test-perf /publish"
60- export PREPROCESSING_EXPORT_PATH=" gs://preprocessing-pipeline-outputs/depmap-pipeline-25q4/preprocessing-pipeline-test-perf /export"
60+ export PREPROCESSING_PUBLISH_DEST=" gs://preprocessing-pipeline-outputs/depmap-pipeline-25q4/preprocessing-pipeline-iqa /publish"
61+ export PREPROCESSING_EXPORT_PATH=" gs://preprocessing-pipeline-outputs/depmap-pipeline-25q4/preprocessing-pipeline-iqa /export"
6162
6263if [ " $CLEAN_START " = " true" ] && [ -d " pipeline/preprocessing-pipeline/state" ]; then
6364 echo " Cleaning preprocessing pipeline state..."
@@ -71,8 +72,8 @@ rsync -av depmap-deploy/non-public-pipeline-files/ pipeline/
7172# Run the Python preprocessing pipeline script
7273echo " Starting preprocessing pipeline..."
7374python pipeline/preprocessing-pipeline/preprocessing_pipeline_runner.py \
74- test-perf \
75- depmap-preprocessing-pipeline-run-test-perf \
75+ iqa \
76+ depmap-preprocessing-pipeline-run-iqa \
7677 --publish-dest " $PREPROCESSING_PUBLISH_DEST " \
7778 --export-path " $PREPROCESSING_EXPORT_PATH "
7879
@@ -92,6 +93,6 @@ echo "==================== ALL PIPELINES COMPLETED ===================="
9293# If we reach here, the job was successful so potentially kick off the DB rebuild
9394if [ " $ON_SUCCESS_REBUILD_DB " = " true" ]; then
9495 echo " Triggering DB rebuild..."
95- curl ' https://hooks-proxy.broadinstitute.org/generic-webhook/jenkins/datascidev?token=test-perf +build+db+3amvd0923SSz'
96+ curl ' https://hooks-proxy.broadinstitute.org/generic-webhook/jenkins/datascidev?token=iqa +build+db+3amvd0923SSz'
9697 echo " DB rebuild triggered!"
9798fi
0 commit comments