Changeset 7460 for trunk/MagicSoft/Mars/datacenter/scripts/runstar
- Timestamp:
- 01/10/06 22:12:58 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/datacenter/scripts/runstar
r7426 r7460 20 20 # Author(s): Daniela Dorner 08/2004 <mailto:dorner@astro.uni-wuerzburg.de> 21 21 # 22 # Copyright: MAGIC Software Development, 2000-200 422 # Copyright: MAGIC Software Development, 2000-2006 23 23 # 24 24 # 25 25 # ======================================================================== 26 26 # 27 # This script is launching star for sequence. 28 # 29 # In the case of star only one sequence is processed. Despite of 30 # that the structure of the script is such, that also more sequences could 31 # be processed. The restriction to one sequence has been made, as star 32 # takes some time. There's one todo file per sequence. 33 # First the script searches for a todo file. Then star is run for the 34 # sequence from this todo file. 35 # 36 # the star.rc files are taken from the mars directory 27 37 # 28 38 … … 53 63 cd $mars 54 64 65 # check if getting of list is already running 55 66 date > $lockpath/lock-getting-star-list.txt >> $scriptlog 2>&1 56 67 checklock0=$? … … 64 75 esac 65 76 77 # finding todo file 66 78 echo "checking if other todo-files are there" >> $scriptlog 2>&1 67 79 if ls $todofile-[1-9]*.txt >> $scriptlog 2>&1 … … 81 93 rm -v $lockpath/lock-getting-star-list.txt >> $scriptlog 2>&1 82 94 95 # choosing todo file 83 96 nr=bla 84 97 echo "finding the right todo-file" >> $scriptlog 2>&1 85 98 todofiles=`ls $listpath/ToDo-$table-$column-*` 86 87 #echo "todofiles: "${todofiles[@]} >> $scriptlog 2>&188 99 89 100 for todofile in ${todofiles[@]} … … 114 125 115 126 127 # retrieve sequence from todo file 116 128 sequences=(`cat $todofile`) 117 118 129 if [ "$sequences" = "" ] 119 130 then … … 125 136 fi 126 137 138 # run star for sequence 127 139 echo "sequences: "${sequences[@]} >> $scriptlog 2>&1 128 129 140 for sequence in ${sequences[@]} 130 141 do
Note:
See TracChangeset
for help on using the changeset viewer.