view build-and-run-job-scripts.sh @ 2:ab8d558ea6e6 draft default tip

planemo upload commit 841d8b22bf9f1aaed6bfe8344b60617f45b275b2-dirty
author mingchen0919
date Sun, 30 Dec 2018 13:57:07 -0500
parents 32210899a3dd
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