annotate build-and-run-job-scripts.sh @ 0:7a3bb304fe1d draft

planemo upload
author mingchen0919
date Mon, 14 May 2018 15:56:28 -0400
parents
children 350afb9412fc
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
7a3bb304fe1d planemo upload
mingchen0919
parents:
diff changeset
1 # run job scripts within the tool outputs directory
7a3bb304fe1d planemo upload
mingchen0919
parents:
diff changeset
2 cd ${REPORT_FILES_PATH}
7a3bb304fe1d planemo upload
mingchen0919
parents:
diff changeset
3
7a3bb304fe1d planemo upload
mingchen0919
parents:
diff changeset
4 #========== build and run job 1 script ============
7a3bb304fe1d planemo upload
mingchen0919
parents:
diff changeset
5 cat >curl-download.sh <<EOF
7a3bb304fe1d planemo upload
mingchen0919
parents:
diff changeset
6 curl -O output.$X_n $X_u > curl-log.txt 2>&1
7a3bb304fe1d planemo upload
mingchen0919
parents:
diff changeset
7 EOF
7a3bb304fe1d planemo upload
mingchen0919
parents:
diff changeset
8
7a3bb304fe1d planemo upload
mingchen0919
parents:
diff changeset
9 # run job 1 script
7a3bb304fe1d planemo upload
mingchen0919
parents:
diff changeset
10 sh curl-download.sh
7a3bb304fe1d planemo upload
mingchen0919
parents:
diff changeset
11