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

Last change on this file since 18683 was 18252, checked in by Daniela Dorner, 9 years ago
removed lockfile
  • Property svn:executable set to *
File size: 797 bytes
Line 
1#!/bin/bash
2#
3
4source `dirname $0`/../Sourcefile.sh
5printprocesslog "INFO starting $0"
6program=BuildSequences
7
8# removed, as this is taken care of in crontab
9#set -C
10## check if script is already running
11#lockfile=$lockpath/lock-$program.txt
12#checklock
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.