Mercurial > repos > mingchen0919 > aurora_deseq2_site
view build-and-run-job-scripts.sh @ 7:90f3027fdb28 draft
planemo upload commit 09b6a41798350090b61aea16966ba64b583ef02b-dirty
author | mingchen0919 |
---|---|
date | Sat, 09 Jun 2018 22:15:40 -0400 |
parents | b69138a05735 |
children |
line wrap: on
line source
# run job scripts within the tool outputs directory cd ${REPORT_FILES_PATH} #========== build and run job 1 script ============ cat >job-1-script.sh <<EOF #------------ BELOW IS WHERE YOU WRITE YOUR OWN SHELL SCRIPT -------------- #------------ END OF SHELL SCRIPT ------------------------------------------ EOF # run job 1 script sh job-1-script.sh #========== build and run job 2 script ============ cat >job_2_script.sh <<EOF #------------ BELOW IS WHERE YOU WRITE YOUR OWN SHELL SCRIPT -------------- #------------ END OF SHELL SCRIPT ------------------------------------------ EOF # run job 2 script sh job_2_script.sh