source: trunk/DataCheck/Processing/BuildSequences.sh@ 17440

Last change on this file since 17440 was 15598, checked in by Daniela Dorner, 11 years ago
updated path and name of macro
  • Property svn:executable set to *
File size: 747 bytes
Line 
1#!/bin/bash
2#
3
4source `dirname $0`/../Sourcefile.sh
5printprocesslog "INFO starting $0"
6program=BuildSequences
7
8set -C
9
10# check if script is already running
11lockfile=$lockpath/lock-$program.txt
12checklock
13
14logfile=$runlogpath"/BuildSequences-"$datetime".log"
15date >> $logfile
16
17cd $mars
18
19check1=`root -q -b fact/processing/buildseqentries.C+\("\"$datapath\""\,"\"$seqpath\""\,1\,kFALSE\) | tee $logfile | intgrep`
20
21case $check1 in
22 1) printprocesslog "INFO built sequences was successfully (check1=$check1)"
23 ;;
24 0) printprocesslog "WARN connection to DB failed (check1=$check1)"
25 #check="no"
26 ;;
27 *) printprocesslog "ERROR buildseqentries.C failed (check1=$check1)"
28 #check=$check1
29 ;;
30esac
31
32finish
33
Note: See TracBrowser for help on using the repository browser.