Ignore:
Timestamp:
01/10/06 22:12:58 (19 years ago)
Author:
Daniela Dorner
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/datacenter/scripts/runstar

    r7426 r7460  
    2020#   Author(s): Daniela Dorner  08/2004 <mailto:dorner@astro.uni-wuerzburg.de>
    2121#
    22 #   Copyright: MAGIC Software Development, 2000-2004
     22#   Copyright: MAGIC Software Development, 2000-2006
    2323#
    2424#
    2525# ========================================================================
    2626#
     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
    2737#
    2838
     
    5363cd $mars
    5464
     65# check if getting of list is already running
    5566date > $lockpath/lock-getting-star-list.txt >> $scriptlog 2>&1
    5667checklock0=$?
     
    6475esac
    6576
     77# finding todo file
    6678echo "checking if other todo-files are there" >> $scriptlog 2>&1
    6779if  ls $todofile-[1-9]*.txt >> $scriptlog 2>&1
     
    8193rm -v $lockpath/lock-getting-star-list.txt >> $scriptlog 2>&1
    8294
     95# choosing todo file
    8396nr=bla
    8497echo "finding the right todo-file" >> $scriptlog 2>&1
    8598todofiles=`ls $listpath/ToDo-$table-$column-*`
    86 
    87 #echo "todofiles: "${todofiles[@]} >> $scriptlog 2>&1
    8899
    89100for todofile in ${todofiles[@]}
     
    114125
    115126
     127# retrieve sequence from todo file
    116128sequences=(`cat $todofile`)
    117 
    118129if [ "$sequences" = "" ]
    119130then
     
    125136fi
    126137
     138# run star for sequence
    127139echo "sequences: "${sequences[@]} >> $scriptlog 2>&1
    128 
    129140for sequence in ${sequences[@]}
    130141do
Note: See TracChangeset for help on using the changeset viewer.