diff --git a/submit_trio_wes_archive_project.sh b/submit_trio_wes_archive_project.sh index 13f0e184b278154d718ecdfc5428496775b09dd2..542e16aae0b12c5f7863b73b8162beee01c43dba 100755 --- a/submit_trio_wes_archive_project.sh +++ b/submit_trio_wes_archive_project.sh @@ -36,6 +36,7 @@ DIRS=$(echo $PRIORITY_DIRS | tr ":" "\n") for dir in $DIRS do rsync -av $dir $ARCHIVE_DIR/prioritization/ + rsync -av $dir.md5sum.txt $ARCHIVE_DIR/prioritization/ done # move to the archive area and check the md5s diff --git a/submit_trio_wes_priority_and_qc_checksums.sh b/submit_trio_wes_priority_and_qc_checksums.sh index 984367b27d74a7a4f76ad64dd2deee49fc49331d..9163fd9efc7e956e3c7783de30d3f59e037946ff 100755 --- a/submit_trio_wes_priority_and_qc_checksums.sh +++ b/submit_trio_wes_priority_and_qc_checksums.sh @@ -16,9 +16,12 @@ source $CONFIG_SH cd $OUTPUT_DIR/qc -md5sum ${PROJECT_ID}_qc_report.html > ${PROJECT_ID}_qc_report.md5sum.txt +for file in ${PROJECT_ID}_qc_report*.html +do + md5sum $file >> ${PROJECT_ID}_qc_report.md5sum.txt +done -for file in `find ${PROJECT_ID}_qc_report_data -type f` +for file in `find ${PROJECT_ID}_qc_report*_data -type f` do md5sum $file >> ${PROJECT_ID}_qc_report.md5sum.txt done