Mercurial > repos > mingchen0919 > aurora_deseq2_site
diff build-and-run-job-scripts.sh @ 1:32210899a3dd draft
planemo upload commit 841d8b22bf9f1aaed6bfe8344b60617f45b275b2-dirty
author | mingchen0919 |
---|---|
date | Sun, 30 Dec 2018 12:45:56 -0500 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/build-and-run-job-scripts.sh Sun Dec 30 12:45:56 2018 -0500 @@ -0,0 +1,25 @@ +# 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