annotate build-and-run-job-scripts.sh @ 5:a1dfadeb3b59 draft

planemo upload for repository https://github.com/feltus/BDSS
author mingchen0919
date Tue, 12 Jun 2018 11:13:54 -0400
parents 759232961286
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
759232961286 planemo upload for repository https://github.com/feltus/BDSS
mingchen0919
parents:
diff changeset
1 # run job scripts within the tool outputs directory
759232961286 planemo upload for repository https://github.com/feltus/BDSS
mingchen0919
parents:
diff changeset
2 cd ${REPORT_FILES_PATH}
759232961286 planemo upload for repository https://github.com/feltus/BDSS
mingchen0919
parents:
diff changeset
3
759232961286 planemo upload for repository https://github.com/feltus/BDSS
mingchen0919
parents:
diff changeset
4 #========== build and run job 1 script ============
759232961286 planemo upload for repository https://github.com/feltus/BDSS
mingchen0919
parents:
diff changeset
5 cat >job-1-script.sh <<EOF
759232961286 planemo upload for repository https://github.com/feltus/BDSS
mingchen0919
parents:
diff changeset
6 #------------ BELOW IS WHERE YOU WRITE YOUR OWN SHELL SCRIPT --------------
759232961286 planemo upload for repository https://github.com/feltus/BDSS
mingchen0919
parents:
diff changeset
7
759232961286 planemo upload for repository https://github.com/feltus/BDSS
mingchen0919
parents:
diff changeset
8
759232961286 planemo upload for repository https://github.com/feltus/BDSS
mingchen0919
parents:
diff changeset
9 #------------ END OF SHELL SCRIPT ------------------------------------------
759232961286 planemo upload for repository https://github.com/feltus/BDSS
mingchen0919
parents:
diff changeset
10 EOF
759232961286 planemo upload for repository https://github.com/feltus/BDSS
mingchen0919
parents:
diff changeset
11
759232961286 planemo upload for repository https://github.com/feltus/BDSS
mingchen0919
parents:
diff changeset
12 # run job 1 script
759232961286 planemo upload for repository https://github.com/feltus/BDSS
mingchen0919
parents:
diff changeset
13 sh job-1-script.sh
759232961286 planemo upload for repository https://github.com/feltus/BDSS
mingchen0919
parents:
diff changeset
14
759232961286 planemo upload for repository https://github.com/feltus/BDSS
mingchen0919
parents:
diff changeset
15
759232961286 planemo upload for repository https://github.com/feltus/BDSS
mingchen0919
parents:
diff changeset
16 #========== build and run job 2 script ============
759232961286 planemo upload for repository https://github.com/feltus/BDSS
mingchen0919
parents:
diff changeset
17 cat >job_2_script.sh <<EOF
759232961286 planemo upload for repository https://github.com/feltus/BDSS
mingchen0919
parents:
diff changeset
18 #------------ BELOW IS WHERE YOU WRITE YOUR OWN SHELL SCRIPT --------------
759232961286 planemo upload for repository https://github.com/feltus/BDSS
mingchen0919
parents:
diff changeset
19
759232961286 planemo upload for repository https://github.com/feltus/BDSS
mingchen0919
parents:
diff changeset
20
759232961286 planemo upload for repository https://github.com/feltus/BDSS
mingchen0919
parents:
diff changeset
21 #------------ END OF SHELL SCRIPT ------------------------------------------
759232961286 planemo upload for repository https://github.com/feltus/BDSS
mingchen0919
parents:
diff changeset
22 EOF
759232961286 planemo upload for repository https://github.com/feltus/BDSS
mingchen0919
parents:
diff changeset
23
759232961286 planemo upload for repository https://github.com/feltus/BDSS
mingchen0919
parents:
diff changeset
24 # run job 2 script
759232961286 planemo upload for repository https://github.com/feltus/BDSS
mingchen0919
parents:
diff changeset
25 sh job_2_script.sh