Mercurial > repos > mingchen0919 > aurora_bdss_url
comparison build-and-run-job-scripts.sh @ 0:b12c945daf86 draft
planemo upload for repository https://github.com/feltus/BDSS
author | mingchen0919 |
---|---|
date | Mon, 11 Jun 2018 23:04:53 -0400 |
parents | |
children | a110308993be |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:b12c945daf86 |
---|---|
1 # run job scripts within the tool outputs directory | |
2 cd ${REPORT_FILES_PATH} | |
3 | |
4 #========== build and run job 1 script ============ | |
5 cat >bdss-download.sh <<EOF | |
6 #------------ BELOW IS WHERE YOU WRITE YOUR OWN SHELL SCRIPT -------------- | |
7 export PATH=/main/sites/galaxy/galaxy/tools/_conda/bin:$PATH | |
8 | |
9 for $u in $(echo $X_u | sed "s/,/ /g"); | |
10 do | |
11 echo "bdss transfer --destination download_dir -u $u" | |
12 done | |
13 | |
14 | |
15 #------------ END OF SHELL SCRIPT ------------------------------------------ | |
16 EOF | |
17 | |
18 | |
19 sh bdss-download.sh |